小程序
小游戏
企业微信
微信支付
扫描小程序码分享
<image wx:for="{{tempPosts}}" wx:key="id" src="{{item.imageLists[0].url}}" bindload="loadPic" binderror="loadPicError" data-index="{{index}}" />
数据如下:
图片显示不出来
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以那样写(如果你不循环,只是写死的话)
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<block wx:for="{{tempPosts}}" wx:for-item="itemChild" wx:for-index="idx"> <image src="{{itemChild.url}}" bindload="loadPic" binderror="loadPicError" data-index="{{idx}}" /> </block>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
可以那样写(如果你不循环,只是写死的话)
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
<block wx:for="{{tempPosts}}" wx:for-item="itemChild" wx:for-index="idx"> <image src="{{itemChild.url}}" bindload="loadPic" binderror="loadPicError" data-index="{{idx}}" /> </block>