HomeDocs
跳到主要内容

dlt.getSystemInfoAsync

简介

异步获取系统信息。

使用限制

基础库从 4.0.0 或更高版本支持。

参数

Object object

属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数

Object res

属性类型说明
successstringtrue-获取成功
modelstring手机型号。
pixelRationumber设备像素比。
windowWidthnumber窗口宽度。单位:dp
windowHeightnumber窗口高度。单位:dp
languagestring设置的语言。遵循 ISO 639 规范
frameworkversionstring小程序基础库版本号
storagestring设备磁盘容量。
currentBatterystring当前电量百分比。
systemstring系统版本。
platformstring系统名:Android,iOS / iPhone OS 。
screenWidthnumber屏幕宽度。单位:px
screenHeightnumber屏幕高度。单位:px
brandstring手机品牌。
packageNamestringpackageName
gaidstring宿主设备 ID
countrystring国家
mccstring国家码
capsuleHeightnumber胶囊体高度。单位:px
capsuleWidthnumber胶囊体宽度。单位:px
capsuleTranslationYnumber胶囊体纵向偏移量。单位:px
capsuleTranslationXnumber胶囊体横向偏移量。单位:px
statusBarHeightnumber状态栏高度。单位:px

object.fail 回调函数

参数

Object res

属性类型说明
successstringfalse-失败失败

示例代码

// pages/index/index.js
Page({
getSystemInfoAsync() {
dlt.getSystemInfoAsync({
success: (res) => {
console.log("systemInfo: ", res);
},
});
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.