- wx.downloadFile提示超过最大连接数10
使用wx.downloadFile接口下载提示 fail exceed max download connection count 10 可明明我只下载一张图片,以下为我的代码: [图片]
2017-11-02 - 下载文件总是报:downloadFile:fail
wx.downloadFile 总是报downloadFile:fail createDownloadTask:fail exceed max download connection count 10 wx.downloadFile({ url: "http://yunjiazheng-static.oss-cn-shanghai.aliyuncs.com/app/lite/app/title@2x.png", success: (res) => { }, fail:(err)=>{ console.log(err) }, complete:()=>{ } })
2018-02-07 - 微信下载图片报错
downs:function(){ wx.downloadFile({ url: this.data.src, success:function(res){ console.log(res) // wx.saveImageToPhotosAlbum({ // filePath: this.data.src, // success: function () { // }, // fail: function (res) { // console.log(res) // } // }) }, fail:function(res){ wx.showToast({ title: res.errMsg }) } }) 这时候报错是 WAService.js:4 downloadFile:fail createDownloadTask:fail exceed max download connection count 10
2017-08-18