Nativescript角度元素解析错误:错误:无效属性[(ngModel)]

时间:2018-05-12 17:33:10

标签: xml angular nativescript

Nativescript angular app error:

  

元素解析错误:错误:无效属性[(ngModel)]。

使用模板“nativescript-template-ng-tutorial”创建的项目,但在使用<tr [ngClass]="tablerowClass" *ngFor="let dataObject of data$ | async" (click)="!allowClick || changeTable(dataObject.id)"> <td *ngFor="let key of createTableArray(dataObject)" class="{{ getTableColumnClass(key.key) }}"> <div [innerHTML]="key.value"></div> </td> </tr> [(ngModel)]等角度标记时,我得到:

  

元素解析错误:错误:无效属性[(ngModel)]。

已经从nativescript-angular / forms。

导入了NativeScriptFormsModule

这是我的app.module.ts文件

*ngFor

以下是错误的快照: Error in Console

1 个答案:

答案 0 :(得分:0)

将app.component.xml的扩展名更改为app.component.html,不会发生错误。这是因为XML文件类型无法识别角度标记。 如需参考,请阅读以下链接中的提示:https://docs.nativescript.org/angular/tutorial/ng-chapter-3