文章为博主原创,纯属个人见解,如有错误欢迎指出。
如需转载,请注明出处。
在js中遍历
for (var index in res.data.infos) { res.data.infos[index].info_file = res.data.infos[index].info_file.split(','); }
在wxml中遍历
<view class="img" wx:for="{{item.info_file}}" wx:for-item="img" wx:key="img" id="img" bindtap='previewImg' id="img" data-imgs='{{item.info_file}}' data-currentimg="{{img}}"> <image src="{{server_host}}{{img}}"></image> </view>