.wxml中的wx:for和.js中使用wx.chooseMedia出现了问题,没办法上传图片显示?
.wxml中的代码: <view bindtap="uploadImage">上传图片</view>
<view class="pic">
<image wx:for="{{imageList}}" wx:key="" src="{{item}}"></image>
</view>
.js中的代码: Page({
/**
* 页面的初始数据
*/
data: {
imageList:['/stack/user.png', '/stack/user.png'],
},
uploadImage(){
var that = this
wx.chooseMedia({
count : 20,
mediaType : ['image', 'video'],
sourceType : ['album', 'camera'],
maxDuration : 60,
success : res => {
console.log(res)
that.setData({
imageList : res.tempFiles.tempFilePath
})
console.log(that.data.imageList)
}
})
},
})
希望可以得到大佬们的解答 这是运行时出现的问题: [图片] 感谢各位大佬