我在Ionic4应用程序内部使用了cordova AppCenter Shared插件并调用了函数,我能够在控制台中获取ID,但是无法将其分配给公共变量,有什么想法吗?:
堆栈:Angular 6
public deviceId: string = '';
this._window.AppCenter.getInstallId(function(success, error) {
console.log(success);
this.deviceId = success;
});