Skip to main content
Version: 3.x

Taro.getDeviceInfo()

获取设备基础信息

支持情况:

H5: 不支持 abi、benchmarkLevel

参考文档

类型

() => Result

参数

Result

参数类型必填说明
abistring应用二进制接口类型(仅 Android 支持)
benchmarkLevelnumber设备性能等级(仅Android小游戏)。取值为:-2 或 0(该设备无法运行小游戏),-1(性能未知),>=1(设备性能值,该值越高,设备性能越好,目前最高不到50)
brandstring设备品牌
modelstring设备型号
systemstring操作系统及版本
platformstring客户端平台

示例代码

const deviceInfo = Taro.getDeviceInfo()

console.log(deviceInfo.abi)
console.log(deviceInfo.benchmarkLevel)
console.log(deviceInfo.brand)
console.log(deviceInfo.model)
console.log(deviceInfo.platform)
console.log(deviceInfo.system)