https://developers.weixin.qq.com/miniprogram/dev/api/media/image/wx.chooseImage.html
wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success (res) {
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})
tempFilePath
这个地方是不是应该修改为 tempFilePaths
少了一个 s
tempFilePath 可以理解为 tempFilePaths 数组中的一个,可以作为 img 标签的 src 属性
你好,感谢反馈,我们核实下