2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-09-19 15:23:49 +08:00
|
|
|
title:
|
2016-08-25 09:46:19 +08:00
|
|
|
zh-CN: 拖拽上传
|
|
|
|
en-US: Upload files by dragging and dropping
|
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
|
|
|
|
|
2015-08-09 18:00:20 +08:00
|
|
|
可以把文件拖入指定区域,完成上传,同样支持点击上传。
|
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can drag files to a specific area, to upload. Meanwhile you can also upload by selecting.
|
|
|
|
|
|
|
|
|
2015-08-09 18:00:20 +08:00
|
|
|
````jsx
|
2016-07-29 14:40:19 +08:00
|
|
|
import { Upload, Icon, message } from 'antd';
|
2015-10-28 20:55:49 +08:00
|
|
|
const Dragger = Upload.Dragger;
|
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',
|
2015-11-03 16:58:41 +08:00
|
|
|
showUploadList: false,
|
2016-01-13 22:39:02 +08:00
|
|
|
action: '/upload.do',
|
2016-07-29 14:40:19 +08:00
|
|
|
onChange(info) {
|
|
|
|
if (info.file.status !== 'uploading') {
|
|
|
|
console.log(info.file, info.fileList);
|
|
|
|
}
|
|
|
|
if (info.file.status === 'done') {
|
2016-09-14 09:52:14 +08:00
|
|
|
message.success(`${info.file.name} file uploaded successfully.`);
|
2016-07-29 14:40:19 +08:00
|
|
|
} else if (info.file.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(
|
2016-04-29 12:13:27 +08:00
|
|
|
<div>
|
|
|
|
<div style={{ width: 246, height: 140 }}>
|
|
|
|
<Dragger {...props}>
|
|
|
|
<Icon type="plus" />
|
|
|
|
</Dragger>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: 16, height: 180 }}>
|
|
|
|
<Dragger {...props}>
|
|
|
|
<p className="ant-upload-drag-icon">
|
|
|
|
<Icon type="inbox" />
|
|
|
|
</p>
|
2016-08-25 09:46:19 +08:00
|
|
|
<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>
|
2016-04-29 12:13:27 +08:00
|
|
|
</Dragger>
|
|
|
|
</div>
|
2016-01-13 22:39:02 +08:00
|
|
|
</div>
|
|
|
|
, mountNode);
|
2015-11-13 16:09:39 +08:00
|
|
|
````
|