赵永强
赵永强
  • 发布:2022-09-19 17:45
  • 更新:2022-09-19 17:45
  • 阅读:125

想问一下为什么内网无法接听下载进度呢

分类:uni-app
downloadTask.onProgressUpdate((res) => {  
    console.log('下载进度' + res.progress);  
    console.log('已经下载的数据长度' + res.totalBytesWritten);  
    console.log('预期需要下载的数据总长度' + res.totalBytesExpectedToWrite);  

    // 满足测试条件,取消下载任务。  
    if (res.progress > 50) {  
        downloadTask.abort();  
    }  
});
2022-09-19 17:45 负责人:无 分享
已邀请:

要回复问题请先登录注册