-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.html
46 lines (44 loc) · 1.43 KB
/
upload.html
1
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>上传</title>
<script src="https://unpkg.com/[email protected]/dist/axios.min.js"></script>
</head>
<body>
<input type="file" accept="image/*" id="fileEle" />
<button id="uploadBtn" onclick="uploadFile()">上传</button>
<script>
const request = axios.create({
baseURL: "http://localhost:3000/upload",
timeout: 60000,
});
const fileEle = document.getElementById("fileEle");
console.log(fileEle);
function uploadFile() {
if (!fileEle.files.length) return;
const file = fileEle.files[0]; // 获取单个文件
// 省略文件的校验过程,比如文件类型、大小校验
upload({
url: "/single",
file,
});
}
function upload({ url, file, fieldName = "file" }) {
let formData = new FormData();
formData.set(fieldName, file);
request.post(url, formData, {
// 监听上传进度
onUploadProgress: function (progressEvent) {
const percentCompleted = Math.round(
(progressEvent.loaded * 100) / progressEvent.total
);
console.log(percentCompleted);
},
});
}
</script>
</body>
</html>