ionic添加cordova插件-Device

来源:互联网 发布:畅捷通软件下载 编辑:程序博客网 时间:2024/05/20 05:58

Device
获取设备相关信息,如平台、设备模型。

cordova plugin add cordova-plugin-device

Example

module.controller('MyCtrl', function($scope, $cordovaDevice) {  document.addEventListener("deviceready", function () {    var device = $cordovaDevice.getDevice();    var cordova = $cordovaDevice.getCordova();    var model = $cordovaDevice.getModel();    var platform = $cordovaDevice.getPlatform();    var uuid = $cordovaDevice.getUUID();    var version = $cordovaDevice.getVersion();  }, false);})
0 0