You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.9 KiB
92 lines
1.9 KiB
7 years ago
|
<cn>
|
||
|
#### 手动上传
|
||
|
`beforeUpload` 返回 `false` 后,手动上传文件。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Upload manually
|
||
|
Upload files manually after `beforeUpload` returns `false`.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div class="clearfix">
|
||
|
<a-upload
|
||
|
action="//jsonplaceholder.typicode.com/posts/"
|
||
|
:fileList="fileList"
|
||
|
@remove="handleRemove"
|
||
|
:beforeUpload="beforeUpload"
|
||
|
>
|
||
|
<a-button>
|
||
|
<a-icon type="upload" /> Select File
|
||
|
</a-button>
|
||
|
</a-upload>
|
||
|
<a-button
|
||
|
class="upload-demo-start"
|
||
|
type="primary"
|
||
|
@click="handleUpload"
|
||
|
:disabled="fileList.length === 0"
|
||
|
:loading="uploading"
|
||
|
>
|
||
|
{{uploading ? 'Uploading' : 'Start Upload' }}
|
||
|
</a-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import reqwest from 'reqwest'
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
fileList: [],
|
||
|
uploading: false,
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
handleRemove: (file) => {
|
||
|
const index = this.fileList.indexOf(file);
|
||
|
const newFileList = this.fileList.slice();
|
||
|
newFileList.splice(index, 1);
|
||
|
this.fileList = newFileList
|
||
|
},
|
||
|
beforeUpload(file) {
|
||
|
this.fileList = [...this.fileList, file]
|
||
|
return false;
|
||
|
},
|
||
|
handleUpload() {
|
||
|
const { fileList } = this;
|
||
|
const formData = new FormData();
|
||
|
fileList.forEach((file) => {
|
||
|
formData.append('files[]', file);
|
||
|
});
|
||
|
this.uploading = true
|
||
|
|
||
|
// You can use any AJAX library you like
|
||
|
reqwest({
|
||
|
url: '//jsonplaceholder.typicode.com/posts/',
|
||
|
method: 'post',
|
||
|
processData: false,
|
||
|
data: formData,
|
||
|
success: () => {
|
||
|
this.fileList = []
|
||
|
this.uploading = false
|
||
|
this.$message.success('upload successfully.');
|
||
|
},
|
||
|
error: () => {
|
||
|
this.uploading = false
|
||
|
this.$message.error('upload failed.');
|
||
|
},
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
<style scoped>
|
||
|
.upload-demo-start {
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
</style>
|
||
|
```
|
||
|
|
||
|
|
||
|
|