收藏
回答

安卓微信调用cloud.uploadFile发生错误

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug cloud.uploadFile 客户端 7.0.3 2.6.0 [227]

- 当前 Bug 的表现(可附上截图)


uploadAndCutPic.js? [sm]:388 [上传文件] 失败: Error: errCode: -1  | errMsg: cloud.uploadFile:fail uploadFile:fail SSL handshake aborted: ssl=0x6d5bf058: I/O error during system call, Connection reset by peer; at cloud.uploadFile api; 


- 预期表现

ios微信版本没有这个问题.

- 复现路径


- 提供一个最简复现 Demo


// 上传图片

doUpload: function () {



// 选择图片

wx.chooseImage({

count: 1,

sizeType: ['compressed'],

sourceType: ['album', 'camera'],

success: function (res) {


wx.showLoading({

title: '上传中',

})


const filePath = res.tempFilePaths[0]

// 上传图片

const cloudPath = 'my-image' + filePath.match(/\.[^.]+?$/)[0]

wx.cloud.uploadFile({

cloudPath,

filePath,

success: res => {

console.log('[上传文件] 成功:', res)


app.globalData.fileID = res.fileID

app.globalData.cloudPath = cloudPath

app.globalData.imagePath = filePath

wx.navigateTo({

url: '../storageConsole/storageConsole'

})

},

fail: e => {

console.error('[上传文件] 失败:', e)

wx.showToast({

icon: 'none',

title: '上传失败',

})

},

complete: () => {

wx.hideLoading()

}

})


},

fail: e => {

console.error(e)

}

})

},


最后一次编辑于  2019-02-13
回答关注问题邀请回答
收藏
登录 后发表内容