很好,这个错误发生在我正在审核的应用程序中,该应用程序是由另一个人开发的,到目前为止,还没有找到对我有用的东西。此错误使我无法前进,因为屏幕总是黑屏。
我在这里留下错误的照片。
答案 0 :(得分:0)
该错误是因为您的应用程序使用本机插件,所以如果您运行ionic serve
,它将无法正常工作。
您应该运行ionic cordova run android --emulate
。
如果您只想在网络上对其进行测试,则应检查平台是否为cordova(就像答案Uncaught (in promise): cordova_not_available in Ionic 2一样):
if (this.platform.is('cordova')) {
// You're on a device, call the native plugins. Example:
} else {
// You're testing in browser, do nothing or mock the plugins' behaviour.
}
希望它能起作用!