2016-03-31 09:40:55 +08:00
|
|
|
---
|
2016-11-25 15:00:28 +08:00
|
|
|
order: 5
|
2016-09-19 15:23:49 +08:00
|
|
|
title:
|
2016-08-25 09:46:19 +08:00
|
|
|
zh-CN: 拖拽上传
|
2016-11-25 15:00:28 +08:00
|
|
|
en-US: Drag and Drop
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-09 18:00:20 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-11-25 15:00:28 +08:00
|
|
|
把文件拖入指定区域,完成上传,同样支持点击上传。
|
|
|
|
|
|
|
|
设置 `multiple` 后,在 `IE10+` 可以一次上传多个文件。
|
2015-08-09 18:00:20 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## en-US
|
|
|
|
|
2016-11-30 22:31:30 +08:00
|
|
|
You can drag files to a specific area, to upload. Alternatively, you can also upload by selecting.
|
2016-08-25 09:46:19 +08:00
|
|
|
|
2016-11-30 22:31:30 +08:00
|
|
|
We can upload serveral files at once in modern browsers by giving the input the `multiple` attribute.
|
2016-08-25 09:46:19 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Upload, message } from 'antd';
|
2019-11-28 12:34:33 +08:00
|
|
|
import { InboxOutlined } from '@ant-design/icons';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-06-19 19:09:08 +08:00
|
|
|
const { Dragger } = Upload;
|
2015-08-09 18:00:20 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const props = {
|
2015-08-09 18:00:20 +08:00
|
|
|
name: 'file',
|
2016-11-25 15:00:28 +08:00
|
|
|
multiple: true,
|
2019-04-30 16:10:00 +08:00
|
|
|
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
|
2016-07-29 14:40:19 +08:00
|
|
|
onChange(info) {
|
2019-06-19 19:09:08 +08:00
|
|
|
const { status } = info.file;
|
2016-11-25 15:00:28 +08:00
|
|
|
if (status !== 'uploading') {
|
2016-07-29 14:40:19 +08:00
|
|
|
console.log(info.file, info.fileList);
|
|
|
|
}
|
2016-11-25 15:00:28 +08:00
|
|
|
if (status === 'done') {
|
2016-09-14 09:52:14 +08:00
|
|
|
message.success(`${info.file.name} file uploaded successfully.`);
|
2016-11-25 15:00:28 +08:00
|
|
|
} else if (status === 'error') {
|
2016-09-14 09:52:14 +08:00
|
|
|
message.error(`${info.file.name} file upload failed.`);
|
2016-07-29 14:40:19 +08:00
|
|
|
}
|
|
|
|
},
|
2015-08-09 18:00:20 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2017-10-17 14:43:52 +08:00
|
|
|
<Dragger {...props}>
|
|
|
|
<p className="ant-upload-drag-icon">
|
2019-11-28 12:34:33 +08:00
|
|
|
<InboxOutlined />
|
2017-10-17 14:43:52 +08:00
|
|
|
</p>
|
|
|
|
<p className="ant-upload-text">Click or drag file to this area to upload</p>
|
2019-05-07 14:57:32 +08:00
|
|
|
<p className="ant-upload-hint">
|
|
|
|
Support for a single or bulk upload. Strictly prohibit from uploading company data or other
|
|
|
|
band files
|
|
|
|
</p>
|
2018-06-27 15:55:04 +08:00
|
|
|
</Dragger>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|