wx.chooseImage使用闪退 ios 12.1系统 iphone6
/**选择图片**/
serChooseImage: function (e) {
let that = this;
wx.chooseImage({
count: 1,
sizeType: [‘compressed’],
sourceType: [e.currentTarget.dataset.sourcetype],
success: function (res) {
let tempFilePaths = res.tempFilePaths[0];
wx.navigateTo({
url: ‘…/search_image/search_image?img=’ + tempFilePaths,
})
}
})
},
在两部iphone6测试,另一部ios12.0毫无问题,而12.1在选择完图片点确定之后直接闪退,奇怪的是在上周三测试并无出现
该问题