框架类型 | 问题类型 | API/组件名称 | 终端类型 | 微信版本 | 基础库版本 |
---|---|---|---|---|---|
小程序 | Bug | chooseImage | 微信安卓客户端 | 7.0.16 | 2.12.0 |
代码片段
handleChooseImage () {
wx.chooseImage({
count: 1,
sourceType: [ 'camera' ],
success: function (res) {
wx.showLoading({ title: '上传中' })
wx.uploadFile({
url: '',
name: 'file',
header: {
'Content-Type': 'multipart/form-data;charset=UTF-8'
},
filePath: res.tempFilePaths[0],
success: function (response) {
console.log(response)
wx.hideLoading()
},
fail: function (error) {
console.log(error)
wx.hideLoading()
}
})
}
})
}
网友回复
社区技术运营专员-娇华:
你好,麻烦再重现一次,在手机微信那里上传下日志: 我->设置->帮助与反馈右上角有个上报日志的入口,提供一下微信号,复现问题的详细时间点(如:2020-4-10 10:10)