收藏
回答

oppr11s等部分安卓机型拍照闪退

框架类型 问题类型 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()
                }
            })
        }
    })
}


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签