当前bug描述:使用
wx.chooseImage掉手机选择图片或拍照图片,在成功回调以后可以拿到图片地址进行预览,模拟机上面也能显示图片,但是在真机上面不显示图片。打印以后存在返回的图片地址。
代码:
let _this = this;
wx.chooseImage({
success(res) {
console.log(res.tempFilePaths);
for (let i = 0; i < res.tempFilePaths.length; i += 1) {
_this.picturesArry.push(res.tempFilePaths[i]);
}
_this.$apply();
}
});
由于wx.chooseImage返回的是本地路径,需要使用image标签来显示,background来设置在真机上是不显示的
谢谢老哥,确实是这里的问题