- ios使用wx.uploadFile上传到腾讯云cos失败?
今天看日志发现部分ios机器(13.6、15.1、15.2等等)使用小程序wx.uploadFile上传失败。 业务是使用微信小程序直传到腾讯云cos,cos的报错信息是:The body of your POST request is not well-formed multipart/form-data. 请问上传时body格式会受什么影响? cos后端发现formData字段没有正确上送? const uploadTask = wx.uploadFile({ url: cosBucketMap[tmpFile.cate], filePath: tmpFile.file, name: 'file', timeout, formData: { 'key': tmpFile.new_name, 'success_action_status': 200, 'Signature': cos_config.Authorization, 'x-cos-security-token': cos_config.XCosSecurityToken, 'Content-Type': '', }, success: function(res) { console.log(res); }, fail: function(err) { wx.hideLoading(); console.log(err); }, });
2022-02-10 - wx.getAvailableAudioSources 支持蓝牙耳机接入2021-03-24
- BackgroundAudioManager 10003?
小程序BackgroundAudioManager背景音频播放 在iOS13.3.1 微信版本7.0.12手机上报 {"errMsg":"playerErrCode:7, systemErrCode:2, domain:NSCocoaErrorDomain, description:未能完成操作。(Cocoa错误2。)","errCode":10003,"src":"https://bj.bcebos.com/v1/mobile-guide/audio/prod/9/4a.mp3"} 的错误,重启手机后恢复正常,但是过段时间问题重复出现,请问这种错误是怎么造成的?
2020-05-07