2015-08-09 18:00:20 +08:00
|
|
|
# 拖拽上传
|
|
|
|
|
2015-09-01 00:52:34 +08:00
|
|
|
- order: 3
|
2015-08-09 18:00:20 +08:00
|
|
|
|
|
|
|
可以把文件拖入指定区域,完成上传,同样支持点击上传。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Upload, Icon } from 'antd';
|
|
|
|
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',
|
2015-08-09 18:00:20 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2016-01-13 22:39:02 +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>
|
|
|
|
<p className="ant-upload-text">点击或将文件拖拽到此区域上传</p>
|
|
|
|
<p className="ant-upload-hint">支持单个或批量上传,严禁上传公司内部资料及其他违禁文件</p>
|
|
|
|
</Dragger>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
, mountNode);
|
2015-11-13 16:09:39 +08:00
|
|
|
````
|