获取系统信息。。
OBJECT参数说明:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| success | Function | 是 | 接口挪用乐成的回调 |
| fail | Function | 否 | 接口挪用失败的回调函数 |
| complete | Function | 否 | 接口挪用竣事的回调函数(挪用乐成、失败都会执行) |
success回调参数说明:
| 属性 | 说明 |
|---|---|
| model | 手机型号 |
| pixelRatio | 装备像素比 |
| windowWidth | 窗口宽度 |
| windowHeight | 窗口高度 |
| language | 微信设置的语言 |
| version | 微信版本号 |
| system | 操作系统版本 |
| platform | 客户端平台 |
示例代码:
wx.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)
}
})
获取系统信息同步接口
示例代码:
try {
var res = wx.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
}
更多微信小程序开发教程,,,,,可以关注。。
KESION pp电子软件
KESION pp电子软件是海内领先的在线教育软件及私域社交电商软件服务提供商,,,,,恒久专注于为企业提供在线教育软件及社交电商SaaS平台解决方案。。
公司焦点产品云开店SaaS社交电商服务平台、在线教育SaaS服务平台、教育企业数字化SaaS云平台、企微营销助手、私有化自力安排品牌网校和在线教育咨询等。。KESION 一直通过手艺立异,,,,,提供产品和服务,,,,,助力企业向数字化转型,,,,,通过科技驱动商业刷新,,,,,让商业变得更智慧!
wx.getLocation(OBJECT) 获取目今的地理位置、速率。。当用户脱离小程序后,,,,,此接口无法挪用;;;;;;当用户点击“显示在谈天顶部”时,,,,,此接口可继续挪用。。 OBJECT参数说明: 参数 类型 必填
wx.onAccelerometerChange(CALLBACK) 监听重力感应数据,,,,,频率:5次/秒 ,,,,,接口挪用后会自动最先监听,,,,,可使用 wx.stopAccelerometer 阻止监听。。 CAL