<text>{{msg}}</text>
this.setData({msg: ‘Hello World‘})
wx.onSocketOpen
,wx.onCompassChange
等。wx.onCompassChange(function (res) { console.log(res.direction)})
wx.setStorageSync
,wx.getSystemInfoSync
等。同步 API 的执行结果可以通过函数返回值直接获取,如果执行出错会抛出异常。如:try { wx.setStorageSync('key', 'value')} catch (e) { console.error(e)}
参数名 | 说明 |
---|---|
success | 接口调用成功的回调函数 |
fail | 接口调用失败的回调函数 |
complete | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
---|---|---|
errMsg | string | 错误信息,如果调用成功返回 ${apiName}:ok |
errCode | number | 错误码,仅部分 API 支持,具体含义请参考对应 API 文档,成功时为 0 |
wx.getLocation({ type: 'wgs84', success: (res) => { const latitude = res.latitude // 纬度 const longitude = res.longitude // 经度 }})
wx.scanCode({ success: (res) => { console.log(res) }})