我必须得到。应用程序加载后,UniqueDeviceID,我必须正确安装插件。但是,在应用程序启动后,每次都得到未定义的UniqueDeviceID。我已将代码放入平台中。可以使用的函数,但是无法定义,告诉M,任何人,我的代码有什么问题。我在插件下方安装了该代码?
sudo npm install @ ionic-native / device
initializeApp() {
this.platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
this.statusBar.styleDefault();
this.splashScreen.hide();
//get the udid and set token and platform in storage.......
this.uniqueDeviceID.get().then((uuid: any) =>
this.storage.set('device_token' , console.log('device_token' + alert(this.uuid)))).catch((error: any) => console.log(error))
this.storage.set('platform', this.currentPlatform);
});
}
我每次在控制台中都未定义。在平台准备告诉我任何人之后,我还具有触发功能。