Apache Cordova device.uuid

时间:2013-11-15 08:01:17

标签: android cordova

直截了当。

我正在尝试使用Apache Cordova 3.1.0为我的Android手机获取device.uuid。

我使用cordova创建了一个示例添加:

cordova-android/bin/create mobile-client

示例应用程序正常运行。 然后我添加了一些代码来获取设备uuid。

但是我收到以下错误:

TypeError: Cannot read property 'uuid' from undefined

这是我的javascript:

var app = {
    initialize: function () {
        this.bindEvents();
    },
    bindEvents: function () {
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    onDeviceReady: function () {
        app.receivedEvent('deviceready');
    },
    receivedEvent: function (id) {
        var parentElement = document.getElementById(id);
        var listeningElement = parentElement.querySelector('.listening');
        var receivedElement = parentElement.querySelector('.received');

        listeningElement.setAttribute('style', 'display:none;');
        receivedElement.setAttribute('style', 'display:block;');

        console.log('Received Event: ' + id);

        try {
            alert(device.uuid);
        } catch (e) {
            alert(e);
        }

    }
};

1 个答案:

答案 0 :(得分:0)

您需要将设备插件添加到您的应用中 跑吧

cordova plugin add --save cordova-plugin-device