监听罗盘数据,频率:5次/秒,接口调用后会自动开始监听,可使用wx.stopCompass
停止监听。
CALLBACK返回参数:
参数 | 类型 | 说明 |
---|---|---|
direction | Number | 面对的方向度数 |
示例代码:
wx.onCompassChange(function (res) {
console.log(res.direction)
})
基础库 1.1.0 开始支持,低版本需做兼容处理
开始监听罗盘数据。
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码:
wx.startCompass()
基础库 1.1.0 开始支持,低版本需做兼容处理
停止监听罗盘数据。
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码:
wx.stopCompass()
基础库 2.9.3 开始支持,低版本需做兼容处理
取消监听罗盘数据变化事件,参数为空,则取消所有的事件监听。
罗盘数据变化事件的回调函数
© 2023 mianshi8.net MIT license