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();
}
});
我想H5内下载一个APK。然后查看他的进度,下载完成后,在进行安装,但是请求的地址跟正常的接口是一样的地址,但是就是会跨域,请问这个是要怎么配置呀
1 个回复
9***@qq.com (作者) - 汉库克
已经解决,后端问题