我想使用 ionic Platform 插件获取 uuid 和模型。这段代码
var deviceInfo = ionic.Platform.device();
对我不起作用,它返回一个空数组。我如何在其中获取数据,deviceInfo
以便我可以通过 uuiddeviceInfo.uuid
和 model获取数据deviceInfo.model
。
我也尝试过使用$cordovaDevice.getDevice()
,但这给出了错误
ReferenceError: device is not defined
at Object.getDevice (ng-cordova.js:1956)
这是我正在使用的代码
$ionicPlatform.ready(function() {
var device = $cordovaDevice.getDevice(); //error here
alert(device);
$scope.model = device.model;
alert(model);
$scope.uuid = device.uuid;
alert(uuid);
});
我还安装并cordova plugin add cordova-plugin-device
包含在控制器参数中。$ionicPlatform
$cordovaDevice
请帮我解决这个问题。
谢谢