ant-design/components/upload/demo/drag.md

56 lines
1.3 KiB
Markdown
Raw Normal View History

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
---
2016-08-25 09:46:19 +08:00
## zh-CN
2016-11-25 15:00:28 +08:00
把文件拖入指定区域,完成上传,同样支持点击上传。
设置 `multiple` 后,在 `IE10+` 可以一次上传多个文件。
2016-08-25 09:46:19 +08:00
## en-US
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
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
2016-07-29 14:40:19 +08:00
import { Upload, Icon, message } from 'antd';
2018-06-27 15:55:04 +08:00
2019-06-19 19:09:08 +08:00
const { Dragger } = Upload;
const props = {
name: 'file',
2016-11-25 15:00:28 +08:00
multiple: true,
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') {
message.success(`${info.file.name} file uploaded successfully.`);
2016-11-25 15:00:28 +08:00
} else if (status === 'error') {
message.error(`${info.file.name} file upload failed.`);
2016-07-29 14:40:19 +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">
<Icon type="inbox" />
</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
```