ant-design-vue/components/upload/demo/basic.md

44 lines
1000 B
Markdown
Raw Normal View History

2018-04-13 16:19:50 +08:00
<cn>
#### 点击上传
经典款式,用户点击按钮弹出文件选择框。
</cn>
<us>
#### Upload by clicking
Classic mode. File selection dialog pops up when upload button is clicked.
</us>
```html
<template>
2018-04-19 10:32:11 +08:00
<a-upload name="file" :multiple="true" action="//jsonplaceholder.typicode.com/posts/" :headers="headers" @change="handleChange">
2018-04-13 16:19:50 +08:00
<a-button>
<a-icon type="upload" /> Click to Upload
</a-button>
</a-upload>
</template>
<script>
export default {
data () {
return {
headers: {
authorization: 'authorization-text',
}
}
},
methods: {
handleChange(info) {
if (info.file.status !== 'uploading') {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
this.$message.success(`${info.file.name} file uploaded successfully`);
} else if (info.file.status === 'error') {
this.$message.error(`${info.file.name} file upload failed.`);
}
},
},
}
</script>
```