科多瓦 - 设备



这个插件用于获取有关用户设备的信息。

步骤 1 - 安装设备插件

要安装这个插件,我们需要在命令提示符中运行以下代码段。

C:\Users\username\Desktop\CordovaProject>cordova plugin add cordova-plugin-device

步骤 2 - 添加按钮

我们会使用这个插件,就像我们使用其他科多瓦插件一样。让我们在index.html文件中添加一个按钮。这个按钮将用于获取有关设备的信息。

<button id = "cordovaDevice">CORDOVA DEVICE</button>

步骤 3 - 添加事件侦听器

科多瓦插件在deviceready事件之后可用,因此我们会把事件侦听器放在onDeviceReady函数中,在index.js

document.getElementById("cordovaDevice").addEventListener("click", cordovaDevice);	

步骤 4 - 创建函数

下面的函数将演示如何使用插件提供的各种可能性。我们会把它放在index.js中。

function cordovaDevice() {
   alert("Cordova version: " + device.cordova + "\n" +
      "Device model: " + device.model + "\n" +
      "Device platform: " + device.platform + "\n" +
      "Device UUID: " + device.uuid + "\n" +
      "Device version: " + device.version);
}

当我们点击科多瓦设备按钮时,警告会显示科多瓦版本、设备型号、平台、UUID 和设备版本。

Cordova Device Alert
广告