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