wx.canvasToTempFilePath返回临时路径无法在安卓手机显示
wx.canvasToTempFilePath({
x: canvasL,
y: canvasT,
width: canvasW,
height: canvasH,
destWidth: canvasW,
destHeight: canvasH,
canvasId: ‘myCanvas’,
fileType:‘jpg’,
success: function (res) {
// 成功获得地址的地方
console.log(res)
console.log(res.tempFilePath)
//跳转回添加照片页面
wx.navigateTo({
url: ‘…/add/add?img=’ + res.tempFilePath+’&status=’+1,
})
}
})
上述返回的res.tempFilePath路径传到另一个页面后,无法在安卓手机页面上显示图片,如果返回上一步,重新尝试就可以显示,ios没问题,都是正常的,请问这是什么情况