2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-11-25 15:00:28 +08:00
|
|
|
title:
|
2016-08-25 09:46:19 +08:00
|
|
|
zh-CN: 点击上传
|
|
|
|
en-US: Upload by clicking
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-08 23:37:35 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-08-09 18:00:20 +08:00
|
|
|
经典款式,用户点击按钮弹出文件选择框。
|
2015-08-08 23:37:35 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## en-US
|
|
|
|
|
2017-03-08 12:11:31 +08:00
|
|
|
Classic mode. File selection dialog pops up when upload button is clicked.
|
2016-08-25 09:46:19 +08:00
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Upload, message, Button, Icon } from 'antd';
|
2015-08-09 18:00:20 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const props = {
|
2015-09-21 11:34:14 +08:00
|
|
|
name: 'file',
|
2017-03-08 12:17:46 +08:00
|
|
|
action: '//jsonplaceholder.typicode.com/posts/',
|
2016-04-11 14:03:31 +08:00
|
|
|
headers: {
|
|
|
|
authorization: 'authorization-text',
|
|
|
|
},
|
2015-08-31 21:26:34 +08:00
|
|
|
onChange(info) {
|
2015-09-01 00:52:34 +08:00
|
|
|
if (info.file.status !== 'uploading') {
|
2015-09-08 15:38:28 +08:00
|
|
|
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`);
|
2015-09-14 00:28:39 +08:00
|
|
|
} else if (info.file.status === 'error') {
|
2016-09-14 09:52:14 +08:00
|
|
|
message.error(`${info.file.name} file upload failed.`);
|
2015-09-01 00:52:34 +08:00
|
|
|
}
|
2016-05-11 09:32:33 +08:00
|
|
|
},
|
2015-08-08 23:37:35 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-08-18 15:33:48 +08:00
|
|
|
<Upload {...props}>
|
2017-02-04 22:35:33 +08:00
|
|
|
<Button>
|
2016-09-14 09:52:14 +08:00
|
|
|
<Icon type="upload" /> Click to Upload
|
2015-10-08 15:13:04 +08:00
|
|
|
</Button>
|
2015-09-01 00:52:34 +08:00
|
|
|
</Upload>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-08-08 23:37:35 +08:00
|
|
|
````
|