Quantcast
Channel: CSDN博客移动开发推荐文章
Viewing all articles
Browse latest Browse all 5930

cordova device插件——获取设备信息

$
0
0

device插件

获取设备信息,device对象用于描述设备的硬件和软件

 

 

安装

cordova plugin add cordova-plugin-device

 

 

 

使用:

这个插件定义了一个全局的device对象,描述了设备的硬件和软件信息。

虽然对象在全局范围内,但是需要使用在deviceready事件之后。

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    console.log(device.cordova);
}




属性

device.cordova

返回设备上运行的cordova版本信息
device.model

返回设备的模型或产品的名称
device.platform

得到设备的操作系统名称。
device.uuid

得到设备的全局惟一标识符
device.version

得到操作系统版本号
device.manufacturer

得到设备的制造商
device.isVirtual

设备是否运行在模拟器
device.serial

设备硬件序列号





示例:

 index.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
    <meta name="format-detection" content="telephone=no">
    <meta name="msapplication-tap-highlight" content="no">
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
    <title>Hello World</title>
</head>
<body>
<div class="app">
    <h1>设备基本信息</h1>
    <div id="version"></div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>


index.js

var app = {
    initialize: function() {
       // 等待加载cordova
        document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
    },
    // cordova加载完成
    onDeviceReady: function() {
      this.deviceVersion();
    },
    deviceVersion: function() {
      var html = "<br/> 设备上的cordova版本:" + device.cordova +
               "<br/> 设备名称:" + device.model +
               "<br/> 设备平台系统:" + device.platform +
               "<br/> 设备唯一标识符" + device.uuid +
               "<br/> 设备平台操作系统版本号:" + device.version +
               "<br/> 设备平台制造商:" + device.manufacturer ;

      document.getElementById('version').innerHTML = html;
    }
};

app.initialize();


运行:

模拟器测试:三星S5 android 6.0


 

真机测试:三星NOTE2 android 4.1测试


备注:

由于是使用模拟器,所以没有硬件序列号


作者:michael_ouyang 发表于2017/7/24 18:22:37 原文链接
阅读:17 评论:0 查看评论

Viewing all articles
Browse latest Browse all 5930

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>