问答详情
源自:3-5 云存储(2)

图片的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)

})

},


提问者:慕慕5339420 2019-08-10 21:07

个回答

  • weixin_慕尼黑1332835
    2019-08-28 13:44:43
    已采纳

    我的图片也不显示,怎么解决的?

  • zsasen
    2020-03-07 15:05:56

    我的图片也显示不出来,求解,你是怎么解决的呀,群主。

  • 慕慕5339420
    2019-08-10 22:07:43

    已解决