wx.chooseImage返回的tempFilePaths[0]不能作为临时显示图片的路径吗?
wxml文件代码如下: <image url='{{urlceshi}}'></image>
js文件代码如下:
data: {
urlceshi:'',
},
uploadToCloud() {
var that = this
wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'], //原图、压缩图
sourceType: ['album', 'camera'], //图片来源,从相册、相机选择
success (res) {
console.log(res)
that.setData({
urlceshi:res.tempFilePaths[0]
})
console.log(that.data.urlceshi)
}
})
},
根本不显示图片啊,难道只有上传到云,用云的图片路径才能显示吗? 但是我并不想上传到云,太麻烦了,只是想临时显示一下图片而已。 有没有大佬有解决办法的