chooseImage同样的代码,苹果手机打不开图库,安卓和模拟器可以正常使用,开发工具无任何报错?
嗯。。。。。就是来提一下,问题已经解决了。 问题代码: [代码]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 吧。 [代码][代码]