关于进度条

168 阅读1分钟

image.png

进度条的两种业务情况: 1.需要展示详情并展示进度条百分比。 2.上传或者下载时需要展示文件目前传输百分比。

第一种情况:websoket

第二种情况:用axios里的downloadProgres

1 axios({
2   url: 'https://www.***.com/***.png',
3   method: 'get',
4   onDownloadProgress (progress) {
5     console.log(Math.round(progress.loaded / progress.total * 100) + '%');
6   }
7 })