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

52 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
2017-02-13 10:55:53 +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
const Dragger = Upload.Dragger;
const props = {
name: 'file',
2016-11-25 15:00:28 +08:00
multiple: true,
2017-03-08 12:17:46 +08:00
action: '//jsonplaceholder.typicode.com/posts/',
2016-07-29 14:40:19 +08:00
onChange(info) {
2016-11-25 15:00:28 +08:00
const status = info.file.status;
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>
<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>,
mountNode);
2015-11-13 16:09:39 +08:00
````