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

57 lines
1.4 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
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
2019-08-13 14:07:17 +08:00
import { Upload, message } from 'antd';
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;
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">
<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
```