uploadimg: function (e) {var that = this;
wx.chooseImage({count: 1,sourceType: ['album', 'camera'],success: function (res) {var tempFilePaths = res.tempFilePaths;
wx.uploadFile({url:'https://xxx.com',filePath: tempFilePaths[0],name: 'file',
success: function (res) {
console.log(res.data);}
})
}}
)}
客户反应苹果的ios15.1,在使用小程序上传图片时白屏,大概上传5次左右就会白屏一次。
新建了空白的测试小程序,只有上面的上传图片代码,使用真机测试,iphone10,iphone10XS,iphone11,连续上传4-5次就会白屏。
别的ios版本没有这个问题。
问题已知,参考https://developers.weixin.qq.com/community/develop/issue/352