- bindtab事件在iOS端可以触发,在android端没反应?
<-- wxml --> <view> <button type="primary" bindtap="reservateBtn" loading="{{ loading }}">确认预约</button> </view> <-- js --> /* 确认预约 */ reservateBtn: function() { console.log("预约111") }
2019-06-17 - wx.compressImage 图片压缩后比原图还大,为什么呢?
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo do { wx.compressImage({ src: res.tempFiles[0].path, // 图片路径 quality: 80, // 压缩质量 success: res => { tempFile = res.tempFilePath console.log("tempFile1", tempFile) wx.getFileInfo({ filePath: tempFile, success (res) { console.log("res", res) picSize = res.size console.log("yasuo", picSize) } }) }, fail: error => { console.log("error", error) } }) } while (picSize < 200*1024)
2019-06-05