我通过uni.chooseimage选择图片,想展示出来, 但是却没有数据。 我已经选了图片了。
p***@126.com
- 发布:2018-11-03 18:06
- 更新:2020-04-16 11:52
- 阅读:10258
p***@126.com (作者)
真是这个问题。 太感谢了。 我说我照着例子写的,怎么就实现不了呢。。
2018-11-05 10:50
8***@qq.com
回复 p***@126.com: 我咋不好使呢
2019-07-31 17:59
曹曹曹
我也是这种情况,console都出来了,也换了你的代码,但是还是不出来是为什么啊
2021-07-05 17:37
曹曹曹
<view>
<button type="default" @click="getImg">选择图片</button>
<view v-for="(item,index) in imgArr" :key="index">
<image :src="item" @click="lookImg(index)"></image>
</view>
</view>
uni.chooseImage({
count: 9,
// sizeType压缩图片
sizeType: "compressed",
success: (res) => {
this.imgArr = res.tempFilePaths
console.log(this.imgArr)
}
})
2021-07-05 17:37