API名称:wx.chooseImage,
运行系统: iPhone 12 ios17.5.1
企业微信版本:4.1.26(154663)
基础库版本:3.3.4(sdkVersion: 2.27.3)
问题描述:微信小程序在企业微信中打开使用时,使用wx.chooseImage拍照之后,页面无响应,点击页面中的按钮元素无效,只能点击返回重新进入页面,还是会反复出现同样的问题,该问题只在IOS系统中出现,安卓一切正常使用未复现。微信中使用也是正常的,将API更换为wx.chooseMedia依然会出现此问题。
chooseImage() {
if (this.data.timer) {
clearTimeout(this.data.timer)
}
wx.chooseImage({
count: 1,
sizeType: ['compressed'],
sourceType: ['camera'],
success: res => {
const tempFilePath = res.tempFilePaths[0]
this.uploadFile(tempFilePath)
},
fail: () => {
console.log('wx.chooseImage调用失败')
},
})
wx.onMemoryWarning(function () {
console.log('内存不足警告')
})
}
企业微信的问题建议到企业微信开发者中心提问:https://developer.work.weixin.qq.com/community/question