-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathupload.html
64 lines (54 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vform example</title>
</head>
<body>
<div id="app">
<input type="file" name="file" @change="selectFile">
</div>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.js"></script>
<script src="https://cdn.rawgit.com/cretueusebiu/412715093d6e8980e7b176e9de663d97/raw/aea128d8d15d5f9f2d87892fb7d18b5f6953e952/objectToFormData.js"></script>
<script src="https://unpkg.com/vform"></script>
<!-- <script src="../dist/vform.umd.js"></script> -->
<script>
// import Form from 'vform'
// import objectToFormData from 'object-to-formdata'
const { Form } = window.vform
const objectToFormData = window.objectToFormData
new Vue({
el: '#app',
data () {
return {
form: new Form({
foo: 'bar',
file: null
})
}
},
methods: {
selectFile (e) {
const file = e.target.files[0]
// Do some client side validation...
this.form.file = file
this.form.submit('post', '/upload', {
// Transform form data to FormData
transformRequest: [function (data, headers) {
return objectToFormData(data)
}],
onUploadProgress: e => {
// Do whatever you want with the progress event
// console.log(e)
}
})
.then(({ data }) => {
// ...
})
}
}
})
</script>
</body>
</html>