当试图运行杂货'来自http://docs.nativescript.org/angular/tutorial/ng-chapter-1的示例我得到了一个未定义的错误'
当我跑步时,运行android'在控制台上我得到黄色警告:
nativescript-intl 1.7.0 for android is not compatible with the currently installed framework version 1.6.3.
tns-core-modules 2.0.0 for android is not compatible with the currently installed framework version 1.6.3.
tns-core-modules-widgets 2.0.0 for android is not compatible with the currently installed framework version 1.6.3.
似乎我必须更新(或降级)一些东西,但不确定是否必须使用npm install --save module @ version或我能做什么,我对这些东西都是新手。提前谢谢
答案 0 :(得分:1)
您需要将nativescript版本更新到最新版本(至少> 2.0.x)。为此,请运行npm install nativescript -g
。但是,您可能仍然无法获得所需的功能,因为您的依赖性可能也不是最新的。
如果是这种情况,请运行:
在Windows上:
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/NativeScript/nativescript-cli/production/setup/native-script.ps1'))"
在OSX上:
sudo ruby -e "$(curl -fsSL https://raw.githubusercontent.com/NativeScript/nativescript-cli/production/setup/native-script.rb)"
如果您对此有任何疑问,请参阅this指南。