# 1. 前言
有时候我们在页面中往往会让用户上传或下载某个东西,当用户点击了上传或下载按钮,页面随即开始进行相关操作,此时用户便处于等待状态,即等待上传完成或下载完成,一般来说,这里通常会加一个loading
图,提示用户“文件正在上传/下载中。。。”,这样虽然一定程度上优化了一点用户体验,但是用户还处于漫无目的的等待,而我们更希望的是提供给用户一个上传或下载的实时进度,这样用户体验就大大提高了。
要实现上述的需求,这就要求我们发送了上传或下载请求后能够监控到实时的进度信息,在官方axios
中的请求配置对象config
就为我们提供了关于文件上传下载进度监控的属性,分别是:onDownloadProgress
和 onUploadProgress
,我们可以通过这两个属性来实现对下载进度和上传进度的监控。
接下来,我们也要为我们实现的axios
添加这两个属性并且能够实时监控上传和下载的进度信息。其实,实现起来并不难,因为浏览器已经帮我们做好了,对于下载进度监控,XMLHttpRequest
对象提供了一个progress
事件,我们只需监听该事件就能获得当前数据下载的进度;而对于上传进度的监控,XMLHttpRequest.ipload
对象提供了一个progress
事件,我们只需监听该事件就能获得当前数据上传的进度;
OK,这就是实现思路,有了思路以后我们着手实现吧。
# 2. 向请求配置对象添加属性
请求配置对象config
中添加 onDownloadProgress
和 onUploadProgress
这两个属性之前,我们需要先在src/types/index.ts
中的配置对象的接口类型定义AxiosRequestConfig
上添加该属性的定义,如下:
export interface AxiosRequestConfig {
// 新增
onDownloadProgress?: (e: ProgressEvent) => void;
onUploadProgress?: (e: ProgressEvent) => void;
}
2
3
4
5
添加好以后,我们只需在发送请求之前判断用户是否配置了这两个属性,如果配置了就把该属性挂载到XMLHttpRequest
对象上即可。
# 3. 把属性添加到 XMLHttpRequest 上
我们只需在发送请求之前判断用户是否配置了这两个属性,如果配置了就把该属性挂载到XMLHttpRequest
对象上即可,如下:
const {
// 新增
onDownloadProgress,
onUploadProgress,
} = config;
if (onDownloadProgress) {
request.onprogress = onDownloadProgress;
}
if (onUploadProgress) {
request.upload.onprogress = onUploadProgress;
}
2
3
4
5
6
7
8
9
10
11
12
13
# 4. 潜在问题
这里有一个潜在的问题:由于我们之前给请求头headers
设置了"Content-Type": "application/x-www-form-urlencoded"
,但是当我们通过 FormData
上传文件的时候,这个Content-Type
字段就不能用了,就需要让浏览器自动根据请求数据设置 Content-Type
,所以我们需要在添加请求头之前加一个判断,判断请求发送的数据data
是不是 FormData
类型,是的话就要删除掉之前配置的Content-Type
字段,让浏览器自己去加。
首先,我们先在src/helpers/util.ts
中来创建一个工具函数isisFormData
,用来判断请求数据data
是否为FormData
类型,如下:
export function isFormData(val: any): boolean {
return typeof val !== "undefined" && val instanceof FormData;
}
2
3
然后将判断逻辑加入到添加请求头之前,如下:
// src/core/xhr.ts
if (isFormData(data)) {
delete headers["Content-Type"];
}
2
3
4
5
OK,这样我们就把文件上传下载监控属性就添加到我们的axios
上了,接下里我们就编写demo
来测试下效果。
# 5. demo 编写
在 examples
目录下创建 progressMonitor
目录,在 progressMonitor
目录下创建 index.html
:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>progressMonitor demo</title>
</head>
<body>
<h1>文件下载</h1>
<div>
<button id="download" class="btn btn-primary">Download</button>
</div>
<h1>文件上传</h1>
<form role="form" class="form" onsubmit="return false;">
<input id="file" type="file" class="form-control" />
<button id="upload" type="button" class="btn btn-primary">Upload</button>
</form>
<script src="/__build__/progressMonitor.js"></script>
</body>
</html>
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
接着再创建 app.ts
作为入口文件:
import axios from "../../src/axios";
const instance = axios.create({
onDownloadProgress: function(ProgressEvent) {
const load = ProgressEvent.loaded;
const total = ProgressEvent.total;
const progress = (load / total) * 100;
console.log(progress);
},
onUploadProgress: function(ProgressEvent) {
const load = ProgressEvent.loaded;
const total = ProgressEvent.total;
const progress = (load / total) * 100;
console.log(progress);
},
});
const downloadBtn = document.getElementById("download");
downloadBtn!.onclick = function() {
instance.get("/api/downloadFile");
};
const uploadBtn = document.getElementById("upload");
uploadBtn!.onclick = function() {
const data = new FormData();
const file = document.getElementById("file") as HTMLInputElement;
if (file.files) {
data.append("file", file.files[0]);
instance.post("/api/uploadFile", data);
}
};
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
在本demo
中,我们分别创建了文件下载和上传的两个场景,然后在axios
请求配置对象中配置了 onDownloadProgress
和 onUploadProgress
这两个属性,并且在属性内部打印了进度信息。
接着在 server/server.js
添加新的接口路由:
// 文件下载
router.get("/api/downloadFile", function(req, res) {
res.sendFile(__dirname + "/1.mp4");
});
2
3
4
此处没有编写文件上传的路由接口,我们主要是想观察是否能够监控到上传进度,至于能否上传成功不是我们关心的。
最后在根目录下的index.html
中加上启动该demo
的入口:
<li><a href="examples/progressMonitor">progressMonitor</a></li>
OK,我们在命令行中执行:
# 同时开启客户端和服务端
npm run server | npm start
2
接着我们打开 chrome
浏览器,访问 http://localhost:8000/ (opens new window) 即可访问我们的 demo
了,我们点击 progressMonitor
,就可以看到我们写好的上传下载场景了,分别点击上传和下载按钮,在控制台就可以看到打印出来的实时进度。
OK,以上就是文件上传下载进度监控的功能实现。