- 微信小程序安卓机地图慢慢拖动causedBy==drag不触发?
在安卓机上只要手指慢慢拖动,就不认drag?大家遇到这个问题,是怎么解决的呢?有没有更好的方法可以替代 regionchange(e) { console.log(e.type) console.log(e.causedBy) // console.log(e.type) // 地图发生变化的时候,获取中间点,也就是cover-image指定的位置 if (e.type == 'begin' && e.causedBy == 'gesture') { this.setData({ address: "正在获取地址..." }) } wx.getSystemInfo({ success: (result) => { if (result.platform == "android") { // let timer = setInterval(function(){ if (e.type == 'end' && (e.causedBy == 'scale' || e.causedBy == 'drag')) { console.log('111') this.mapCtx = wx.createMapContext("maps"); this.mapCtx.getCenterLocation({ type: 'gcj02', success: (res) => { console.log('abc') this.setData({ latitude: res.latitude, longitude: res.longitude }) this.getAddress(res.longitude, res.latitude); } }) } }
2020-09-04 - 在自定义组件中使用canvasToTempFilePath压缩图片,canvas画布上没有图片生成?
有在自定义组件中成功使用压缩图片的大佬吗?萌新很想知道https://github.com/luckyiii/study-files/blob/master/StudyFiles/source/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F--%E5%A4%9A%E5%9B%BE%E4%B8%8A%E4%BC%A0%E5%8E%8B%E7%BC%A9%E5%B8%A6%E9%A2%84%E8%A7%88%E5%88%A0%E9%99%A4.md 项目中代码跟以上链接是一样的,只不过在项目中是自定义组件,把画布调出来并没有看见图片。是因为无法在自定义组件中使用吗?
2020-09-03