7***@qq.com
7***@qq.com
  • 发布:2020-05-20 10:25
  • 更新:2020-06-12 18:40
  • 阅读:1638

uni.downloadFile为什么只能下载一次,第二次不再执行此函数

分类:uni-app

xiazai(url) {
const downloadTask = uni.downloadFile({
url: url,
success: (res) => {
if (res.statusCode === 200) {
}
let that = this;
uni.saveFile({
tempFilePath: res.tempFilePath,
success: function(red) {
that.luj = red.savedFilePath;
uni.saveVideoToPhotosAlbum({
filePath: that.luj,
success: function() {
}
});
uni.openDocument({
filePath: that.luj,
success: res => {
}
})
}
});
}
});

            downloadTask.onProgressUpdate((res) => {  
                this.loading = res.progress  
                console.log('下载进度' + res.progress);  
                console.log(this.loading)  
                if (res.progress == 100) {  
                    downloadTask.abort();  
                }  
                // console.log('已经下载的数据长度' + res.totalBytesWritten);  
                // console.log('预期需要下载的数据总长度' + res.totalBytesExpectedToWrite);  
            });  
        }  
2020-05-20 10:25 负责人:无 分享
已邀请:
y***@qq.com

y***@qq.com

我也遇到这样的问题

y***@qq.com

y***@qq.com

我已经解决了:https://ask.dcloud.net.cn/article/37431

该问题目前已经被锁定, 无法添加新回复