图片的src为啥不显示图片
<block wx:for="{{images}}" wx:key="{{index}}">
<image src="{{item.fileID}}"></image>
<button data-id='{{item.fileID}}' size='mini' bindtap="downloadFile"></button>
</block>
getFile() {
wx.cloud.callFunction({
name : 'getUserInfo'
})
.then(res => { // 获取用户信息
console.log(res)
db.collection('img').where({
_openid : res.result.openid
}).get()
.then(res2 => {
console.log(res2)
this.setData({
images : res2.data
})
console.log(this.data.images)
})
.catch(err => {
console.error(err)
})
})
.catch(err => {
console.error(err)
})
},