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

37 lines
759 B
Markdown
Raw Normal View History

2016-04-11 14:03:31 +08:00
---
order: 0
title: 点击上传
---
2015-08-08 23:37:35 +08:00
经典款式,用户点击按钮弹出文件选择框。
2015-08-08 23:37:35 +08:00
````jsx
import { Upload, message, Button, Icon } from 'antd';
const props = {
2015-09-21 11:34:14 +08:00
name: 'file',
2015-08-08 23:37:35 +08:00
action: '/upload.do',
2016-04-11 14:03:31 +08:00
headers: {
authorization: 'authorization-text',
},
2015-08-31 21:26:34 +08:00
onChange(info) {
if (info.file.status !== 'uploading') {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
message.success(`${info.file.name} 上传成功。`);
2015-09-14 00:28:39 +08:00
} else if (info.file.status === 'error') {
message.error(`${info.file.name} 上传失败。`);
}
2015-08-27 15:57:25 +08:00
}
2015-08-08 23:37:35 +08:00
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Upload {...props}>
<Button type="ghost">
2015-10-02 16:52:34 +08:00
<Icon type="upload" /> 点击上传
</Button>
</Upload>
, mountNode);
2015-08-08 23:37:35 +08:00
````