compressImage里setData无效
wx.compressImage({ src: res.tempImagePath, // 原图片路径 quality: 50, // 压缩质量, complete: compRes => { console.log(compRes.tempFilePath) this.setData({ 'form.compImg': compRes.tempFilePath }) } }) |
console.log(compRes.tempFilePath)能打印出来正确的临时路径,但是往form.compImg里赋值就是一直时undefined??
