无法读取未定义的属性“玩家”

时间:2018-06-20 09:28:46

标签: nativescript angular2-nativescript nativescript-angular

我正在开发angular + nativescript应用。我想在其中嵌入一些YouTube和Dailymotion的视频。我发现只有一个插件可以做到这一点:

https://github.com/triniwiz/nativescript-youtubeplayer

我遵循了确切的文档,但仍然出现错误:

Cannot read property 'player' of undefined

2 个答案:

答案 0 :(得分:1)

当您添加具有本机依赖项的插件时,此错误非常普遍,它在实时同步过程中未正确链接(我猜这是一个Android SDK)。通常,这可以解决问题:

$ rm -rf platforms node_modules

$ tns run android

答案 1 :(得分:1)

对我来说,它使用的是旧版本。 当我阅读文档时,我只是运行tns plugin add nativescript-youtubeplayer-即使我的本机脚本是6.x也不是最新版本,它也安装了2.2.6版本。

所以我只用了最新的tns plugin add nativescript-youtubeplayer@latest-就为我解决了..