我在此尝试了以下文档http://ionicframework.com/docs/v2/native/device/,但我没有收到任何回复。
home.ts
import {Component} from '@angular/core';
import {Device} from 'ionic-native';
@Component({
templateUrl: 'build/pages/home/home.html',
})
export class HomePage {
public device;
constructor() {
this.device = {};
platform.ready().then(() => {
this.device['uuid'] = Device.device.uuid;
});
}
}
home.html的
<li>Device UUID is {{device.uuid}}</li>
我已经投放了ionic plugin add cordova-plugin-device
更新:我正在使用IonicView App测试应用程序。
答案 0 :(得分:0)
在不同设备大小的Chrome调试器中进行调试将不允许您调试与本机设备属性相关的任何类型的代码,因此您需要通过模拟器(ios / android)测试您的应用。请注意ionic serve
允许您通过默认浏览器应用程序查看应用程序,该应用程序不是模拟器。
有关如何通过仿真器上的离子测试应用程序的参考,请参阅CLI Docs