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

48 lines
1.0 KiB
Markdown
Raw Normal View History

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-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
```tsx
import { UploadOutlined } from '@ant-design/icons';
import type { UploadProps } from 'antd';
2022-05-21 22:14:15 +08:00
import { Button, message, Upload } from 'antd';
import React from 'react';
const props: UploadProps = {
2015-09-21 11:34:14 +08:00
name: 'file',
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
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} file uploaded successfully`);
2015-09-14 00:28:39 +08:00
} else if (info.file.status === 'error') {
message.error(`${info.file.name} file upload failed.`);
}
2016-05-11 09:32:33 +08:00
},
2015-08-08 23:37:35 +08:00
};
const App: React.FC = () => (
<Upload {...props}>
<Button icon={<UploadOutlined />}>Click to Upload</Button>
</Upload>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```