- 我想在小程序地图中监听实时地理位置变化,并将显示在地图上,不能用setData?
需求:我想在小程序地图中监听实时地理位置变化,并将路线用线段显示在地图上,我使用的是wx.onLocationChange() 实现方式: 我将下面的函数定义在page外面,因为定义在page里面无法调用,会报错ReferenceError: _locationChangeFn is not defined。 const _locationChangeFn = function(res) { console.log('location change', res) var that = this that.setData({ longitude: res.longitude, latitude: res.latitude, accuracy: res.accuracy, speed: res.speed }) } wx.onLocationChange(_locationChangeFn) wx.offLocationChange(_locationChangeFn) 问题: 我想获取this,然后将得到的坐标用setData的方法更新在地图上,结果拿不到this。
2019-08-26 - updateShareMenu设置转发动态消息,没有效果
- 当前 Bug 的表现(可附上截图) [图片] 没有出现“成员正在加入,当前1/3人”提示信息。 - 预期表现 - 复现路径 - 提供一个最简复现 Demo /转发 onShareAppMessage: function () { wx.updateShareMenu({ withShareTicket: true, isUpdatableMessage: true, activityId: '1006_wX5j8g8X5QSQ+Lzr6L91vUbbcmnFPMYUnzGvYgerVc6C0Y3jB_PjMIdkhe8~', // 活动 ID targetState: 0, templateInfo: { parameterList: [{ name: 'member_count', value: '1' }, { name: 'room_limit', value: '3' }] } }); return { title: '分享', path: 'pages/index/index' , } } })
2019-05-06