小程序
小游戏
企业微信
微信支付
扫描小程序码分享
自从更新开发者工具之后,调用wx.uploadFile上传文件到本地服务,提示“appservice:21 uploadFile:fail createUploadTask:fail TypeError: Cannot read property 'MaxUploadConcurrent' of undefined”,旧版本的开发者工具能上传到本地http服务,
如果上传到服务器的https可以上传成功。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
如果项目有输入APPID的话,勾选了不校验安全域名,证书。无论是https或者http都可以实现上传。
但是如果这个项目是无APPID的话,无论是https还是http,调用uploadfile接口,都会提示提示“appservice:21 uploadFile:fail createUploadTask:fail TypeError: Cannot read property 'MaxUploadConcurrent' of undefined”
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
https、http 都会失败吗
上个星期这个版本都是能上传的,没有改过任何代码,现在就不行了。
uploadimage:function(e){
wx.chooseImage({
success: function (res) {
var tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'https://192.168.1.103/Service1.svc/UpLoad', //仅为示例,非真实的接口地址
filePath: tempFilePaths[0],
name: 'file',
formData: {
'user': 'test'
},
console.log(res);
//do something
fail:function(error){
console.log(error);
}
})
});
有代码示例吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
如果项目有输入APPID的话,勾选了不校验安全域名,证书。无论是https或者http都可以实现上传。
但是如果这个项目是无APPID的话,无论是https还是http,调用uploadfile接口,都会提示提示“appservice:21 uploadFile:fail createUploadTask:fail TypeError: Cannot read property 'MaxUploadConcurrent' of undefined”
https、http 都会失败吗
上个星期这个版本都是能上传的,没有改过任何代码,现在就不行了。
uploadimage:function(e){
wx.chooseImage({
success: function (res) {
var tempFilePaths = res.tempFilePaths
wx.uploadFile({
url: 'https://192.168.1.103/Service1.svc/UpLoad', //仅为示例,非真实的接口地址
filePath: tempFilePaths[0],
name: 'file',
formData: {
'user': 'test'
},
success: function (res) {
console.log(res);
//do something
},
fail:function(error){
console.log(error);
}
})
}
});
有代码示例吗