uni-app
上传图片:
export default {
data() {
return {
imgArr: []
}
},
methods: {
chooseImg() {
uni.chooseImage({
count: 5,
success(res) {
this.imgArr = res.tempFilePaths
}
})
}
}
}
编译出错,imgArr未拿到数据。
微信小程序报错信息如下:
解决:
methods: {
chooseImg() {
uni.chooseImage({
count: 5,
success: res=> {
this.imgArr = res.tempFilePaths
}
})
}
}
拿到数据:
解决是解决了,不知道什么原理, 请路过大佬指点。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)