# 上传大文件
上传大文件
<template>
<div id="app">
<input id="inputElement" name="file" type="file" accept="image/png, image/gif, image/jpeg" />
<button @click="upload">上传</button>
</div>
</template>
<script>
import axios from "axios";
export default {
data() {
return {
file: null
};
},
methods: {
upload() {
let inputElement = document.getElementById("inputElement")
let file = inputElement.files[0];
let param = new FormData(); // 创建form对象
param.append("file", file); // 通过append向form对象添加数据
param.append("chunk", "别的数据"); // 添加form表单中其他数据
console.log(param.get("file")); // FormData私有类对象,访问不到,可以通过get判断值是否传进去
let config = {
headers: { "Content-Type": "multipart/form-data" }
};
axios.post("http://192.168.31.253:8080/upload", param, config);
}
}
};
</script>
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
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