getSystemInfo 1.0.0+
获取系统信息。
输入
继承标准对象输入,无扩展属性
输出
success
返回对象参数的扩展属性:
名称 | 数据类型 | 描述 | 示例 |
---|---|---|---|
system | string | 操作系统版本 | 11.4 8.0.0 |
platform | string | 操作系统类型 | ios android |
brand | string | 手机品牌 | Apple Xiaomi |
model | string | 手机型号 | |
version | string | 今日头条App版本号 | 6.7.8 |
appName | string | 宿主APP名称 | Toutiao |
SDKVersion | string | 客户端基础库版本 | 1.0.0 |
screenWidth | number | 屏幕宽度 | |
screenHeight | number | 屏幕高度 | |
windowWidth | number | 可使用窗口宽度 | |
windowHeight | number | 可使用窗口高度 | |
pixelRatio | number | 设备像素比 |
代码示例
tt.getSystemInfo({
success (res) {
console.log(`手机型号为 ${res.model}`);
},
fail (res) {
console.log(`获取系统信息失败`);
}
});
已知问题
- 有少量iOS设备的
model
字段返回如iPod7,1
等值; SDKVersion
当前由 JSSDK 写死1.0.0
;
原文: https://developer.toutiao.com/docs/api/getSystemInfo.html