详情请看:Cordova各个插件使用介绍系列(六)—$cordovaDevice获取设备的相关信息
在项目中需要获取到当前设备,例如手机的ID,联网状态,等,然后这个Cordova里有这个插件可以用,就是$cordovaDevice,下面我来介绍一下怎么来使用它:
一、添加命令:
cordova plugin add cordova-plugin-device
二、相关Js代码,同时也是官网上的代码为:
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);
})
这个插件使用方法相对简单,我想大家看下代码再结合官网上的讲解,就会使用了!