var downloadTask = wx.downloadFile({
url: '',
success: function (res) {
const filePath = res.tempFilePath
console.log(filePath);
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
}
})
}, fail(err) {
console.log(err);
}
})
downloadTask.onProgressUpdate((res) => {
console.log('下载进度', res.progress)
console.log('已经下载的数据长度', res.totalBytesWritten)
console.log('预期需要下载的数据总长度', res.totalBytesExpectedToWrite)
})
直接失败了 报错
{errMsg: "downloadFile:fail createDownloadTask:fail exceed max download connection count 10"}
一直存在这个问题,怎么解决啊
你好,
解决了吗
Ide 版本回退下试试
fail exceed max download connection count 10 你是同时下载了很多个吗 看这个报错 是超过限制了
* 打开文档
* */
downloadFile: function () {
console.log(111111);
var downloadTask = wx.downloadFile({
url: 'https://qiniu.tyu.link/abcccc.docx',
success: function (res) {
const filePath = res.tempFilePath
console.log(filePath);
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
}
})
}, fail(err) {
console.log(err);
}, complete(e){
console.log(e);
}
})
downloadTask.onProgressUpdate((res) => {
console.log('下载进度', res.progress)
console.log('已经下载的数据长度', res.totalBytesWritten)
console.log('预期需要下载的数据总长度', res.totalBytesExpectedToWrite)
})
},