javascript – Cordova插件在Ripple仿真器上的ListPicker错误
作者:互联网
我在Visual Studio中使用Cordova并添加了ListView plugin.该插件通过config.xml编辑器屏幕成功添加
当我调用window.plugins.listpicker.showPicker时,我可以追踪到cordova.exec(_callback,_error_callback,’ListPicker’,’showPicker’,[config]),然后Ripple在ListPicker上显示“I Haz Cheeseburger”错误. showPicker我们似乎缺少一些东西:(
我已经验证插件在plugins文件夹中列出了我正在使用的其他插件
解决方法:
简短版本:您没有做错任何事情,在实际设备或模拟器上测试您的应用程序,它应该可以正常工作.
长版:
Caution: Ripple doesn’t provide a complete simulation of Cordova APIs or native device capabilities… You can achieve this by testing on actual devices or emulators.
取自here
Ripple只是一个模拟器:它模拟真实设备的一些功能,而不是所有功能.看来你可以在Ripple中测试Cordova core plugins,但几乎不支持自定义插件.
我创建了一个空项目Cordova应用程序,只是粘贴了您提供的链接中的示例代码:在Ripple我得到您描述的错误,而一切正常,如果我在Android设备上运行应用程序.
标签:javascript,cordova,cordova-plugins,visual-studio-cordova 来源: https://codeday.me/bug/20191003/1847793.html