嗯。。。。。就是来提一下,问题已经解决了。
问题代码:
wx.chooseImage({ count: 1, sizeType: "original", sourceType: "album", success (res) { // tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})
正常代码:
wx.chooseImage({ count: 1, sizeType: ['original'], sourceType: ['album'], success (res) { // tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})
差异:
问题代码:
sizeType: "original", sourceType: "album",
正常代码:
sizeType: ['original'],
sourceType: ['album'],
不知道要说什么,以后尽量ctrl C, ctrl V 吧。