在使用chooseMedia时,选择图片后,模拟器出现了N张图片,并且图片内容也没有展示出来,如图:
代码:
<view wx:for="{{tempImages}}" wx:key="item" class="image-group" style="width:{{imageSize}}px;height:{{imageSize}}px;">
<image src="{{item}}"></image>
<view class="close-btn" bind:tap="onRmoveBtnTap" data-index="{{index}}"></view>
</view>
js代码:
onAddImageTap(){
const that = this;
wx.chooseMedia({
count:9,
mediaType:['image'],
sourceTypr:['album','camera'],
success(res){
// console.log(res);
const tempImages = res.tempFiles[0].tempFilePath;
// const oldImages = that.data.tempImages;
// const newImages = oldImages.concat(tempImages);
that.setData({
// tempImages:newImages
注:如果使用注销的这段代码,在模拟器中可以正常展示,但是哪怕选择了4张图片,
只展示一张图片,需要一张一张的添加才能够正常展示
tempImages:tempImages
})
}
})
},
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)