ant-design/components/upload/demo/basic.md
Marius Ileana 39a11f00a0 docs: upload, alert, tooltip - translations of remaining demos (#3035)
* upload - translations of two remaining demos

* alert & tooltip - remaining demo translations

* Prompt typo
2016-09-14 09:52:14 +08:00

45 lines
912 B
Markdown

---
order: 0
title:
zh-CN: 点击上传
en-US: Upload by clicking
---
## zh-CN
经典款式,用户点击按钮弹出文件选择框。
## en-US
Classic mode. File selection dialog pops up when upload button is clicked
````jsx
import { Upload, message, Button, Icon } from 'antd';
const props = {
name: 'file',
action: '/upload.do',
headers: {
authorization: 'authorization-text',
},
onChange(info) {
if (info.file.status !== 'uploading') {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
message.success(`${info.file.name} file uploaded successfully`);
} else if (info.file.status === 'error') {
message.error(`${info.file.name} file upload failed.`);
}
},
};
ReactDOM.render(
<Upload {...props}>
<Button type="ghost">
<Icon type="upload" /> Click to Upload
</Button>
</Upload>
, mountNode);
````