getSystemInfoSync
解释:获取系统信息同步接口
同步返回参数说明:
参数 | 说明 | 最低版本 |
---|---|---|
brand | 手机品牌 | - |
model | 手机型号 | - |
pixelRatio | 设备像素比 | - |
screenWidth | 屏幕宽度 | - |
screenHeight | 屏幕高度 | - |
windowWidth | 可使用窗口宽度 | - |
windowHeight | 可使用窗口高度 | - |
statusBarHeight | 状态栏的高度 | - |
language | 百度 App 设置的语言 | - |
version | 百度 App 版本号 | - |
system | 操作系统版本 | - |
platform | 客户端平台,如:ios。 | - |
fontSizeSetting | 用户字体大小设置 | - |
SDKVersion | 客户端基础库版本 | - |
host | 宿主平台,如:baiduboxapp 。 | 3.30.2 |
示例:
- try {
var res = swan.getSystemInfoSync();
console.log(res.model);
console.log(res.pixelRatio);
console.log(res.windowWidth);
console.log(res.windowHeight);
console.log(res.language);
console.log(res.version);
console.log(res.platform);
} catch (e) {
// Do something when catch error
}