未捕获(承诺):TypeError:Object(...)不是函数 TypeError:Object(...)不是一个函数 在CodePush.sync(vendor.js:84065) 在MyApp.webpackJsonp.406.MyApp.checkCodePush
我的代码中出现上述错误。我的代码如下。
import { CodePush, InstallMode, SyncStatus } from '@ionic-native/code-push/ngx';
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, private codePush: CodePush) {
platform.ready().then(() => {
statusBar.styleDefault();
splashScreen.hide();
platform.ready().then(() => {
statusBar.styleDefault();
splashScreen.hide();
this.codePush.sync();
});
});