一些常用基本设备信息:
https://uniapp.dcloud.io/api/system/info
5+功能模块:
Device模块管理设备信息,用于获取手机设备的相关信息,如IMEI、IMSI、型号、厂商等。通过plus.device获取设备信息管理对象。
属性:
- imei:设备的国际移动设备身份码
- imsi: 设备的国际移动用户识别码
- model:设备的型号
- vendor:设备的生产厂商
- uuid:设备的唯一标识
//获取设备的国际移动设备身份码 console.log("IMEI: "+plus.device.imei); //获取设备的国际移动用户识别码 console.log("IMSI: " + plus.device.imsi); //获取设备的型号 console.log("Model: " + plus.device.model); //获取设备的生产厂商 console.log("Vendor: " + plus.device.vendor); //获取设备的唯一标识号 console.log("UUID: "+plus.device.uuid);
需要注意的一点是,以上方法获取 IMEI 以及 IMSI 即将不支持,HBuilderX2.0.0以后版本使用 plus.device.getInfo 方法
// 获取设备信息 plus.device.getInfo({ success:function(e){ console.log(\'getDeviceInfo success: \'+JSON.stringify(e)); }, fail:function(e){ console.log(\'getDeviceInfo failed: \'+JSON.stringify(e)); } });
(以上:获取失败将返回空字符串)