我使用RadListView如下所示,但我遇到了非常奇怪的错误:
<RadListView [items]="dataItems">
<ng-template tkListItemTemplate let-item="item">
<StackLayout orientation="vertical">
<Label class="nameLabel" [text]="item.title"></Label>
</StackLayout>
</ng-template>
</RadListView>但问题是,我得到了以下例外:

发布于 2017-08-30 12:44:50
问题在于依赖关系。我按照描述的这文件更新了依赖项和版本号。现在工作还不错。
发布于 2017-08-28 13:18:53
尝试升级package.json文件中的所有依赖项,同时遵循下面所附的示例,并尝试重新构建应用程序。
{
"description": "NativeScript Application",
"license": "SEE LICENSE IN <your-license-filename>",
"readme": "NativeScript Application",
"repository": "<fill-your-repository-here>",
"nativescript": {
"id": "org.nativescript.test"
},
"dependencies": {
"@angular/animations": "~4.2.0",
"@angular/common": "~4.2.0",
"@angular/compiler": "~4.2.0",
"@angular/core": "~4.2.0",
"@angular/forms": "~4.2.0",
"@angular/http": "~4.2.0",
"@angular/platform-browser": "~4.2.0",
"@angular/router": "~4.2.0",
"nativescript-angular": "~4.2.0",
"nativescript-telerik-ui-pro": "^3.0.4",
"nativescript-theme-core": "~1.0.2",
"reflect-metadata": "~0.1.8",
"rxjs": "~5.4.2",
"tns-core-modules": "~3.1.0",
"zone.js": "~0.8.2"
},
"devDependencies": {
"nativescript-dev-typescript": "~0.5.0",
"typescript": "~2.4.2"
}
}请记住,在重新构建之前再次删除node_modules、平台和钩子文件夹。
https://stackoverflow.com/questions/45915170
复制相似问题