ionic添加cordova插件-Device 2016-12-22 app ionic **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); }) ```