使用Ionic2中的cordova-plugin-device获取设备详细信息

时间:2016-07-02 19:22:34

标签: cordova-plugins ionic2

我在此尝试了以下文档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测试应用程序。

1 个答案:

答案 0 :(得分:0)

在不同设备大小的Chrome调试器中进行调试将不允许您调试与本机设备属性相关的任何类型的代码,因此您需要通过模拟器(ios / android)测试您的应用。请注意ionic serve允许您通过默认浏览器应用程序查看应用程序,该应用程序不是模拟器。

有关如何通过仿真器上的离子测试应用程序的参考,请参阅CLI Docs