图片的src为啥不显示图片

来源:3-5 云存储(2)

慕慕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)

})

},


写回答 关注

3回答

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

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

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

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

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

    已解决


轻松入门微信小程序与云开发

深入浅出微信小程序核心基础与云开发,使你掌握小程序开发必备技能。

64548 学习 · 1742 问题

查看课程

相似问题