Error TS2339: Property 'ITEMS' does not exist on type 'DataModel[]'
问题 I get this error message: TS2339: Property 'ITEMS' does not exist on type 'DataModel[]' I'm working in IONIC/ANGULAR and doing a reactive Form with a model and getting data from HTTP. There is the model (model.ts): export class DataModel { public ITEMS: any[]; constructor(public NAME: string, public QUANTITY: Array<string>) { this.ITEMS = [{NAME, QUANTITY}]; } } There is the code part where the error come from of the form.page.ts setItems() { const control = this.itemsForm.controls.items as