getSystemInfo

解释:获取系统信息

参数:Object

Object参数说明:

参数名类型必填说明
successFunction接口调用成功的回调
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数说明最低版本
brand手机品牌-
model手机型号-
pixelRatio设备像素比-
screenWidth屏幕宽度-
screenHeight屏幕高度-
windowWidth可使用窗口宽度-
windowHeight可使用窗口高度-
statusBarHeight状态栏的高度-
language百度 App 设置的语言-
version百度 App 版本号-
system操作系统版本-
platform客户端平台,如:ios。-
fontSizeSetting用户字体大小设置-
SDKVersion客户端基础库版本-
host宿主平台,如:baiduboxapp 。3.30.2

示例:在开发者工具中预览效果

  1. swan.getSystemInfo({
    success: function (res) {
    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);
    }
    });