慕慕5339420
2019-08-10 21:07
<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)
})
},
我的图片也不显示,怎么解决的?
我的图片也显示不出来,求解,你是怎么解决的呀,群主。
已解决
轻松入门微信小程序与云开发
64548 学习 · 1742 问题
相似问题