根据文档的例子做的文件下载,想要监控下载进度,然后报错说downloadTask为undefined,不知道为什么,代码如下,就是按照下面的例子写的
const downloadTask = uni.downloadFile({
url: 'http://www.example.com/file/test', //仅为示例,并非真实的资源
success: (res) => {
if (res.statusCode === 200) {
console.log('下载成功');
}
}
});
downloadTask.onProgressUpdate((res) => {
console.log('下载进度' + res.progress);
console.log('已经下载的数据长度' + res.totalBytesWritten);
console.log('预期需要下载的数据总长度' + res.totalBytesExpectedToWrite);
// 测试条件,取消下载任务。
if (res.progress > 50) {
downloadTask.abort();
}
});
小安迪 (作者)
我只是贴出示例代码,url是我的真实文件地址,确实是可以下载的
2019-05-08 16:19