mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
ac50fa147c
* feat #24213: customize progress bar in upload * update doc for customize progress bar in upload
1.1 KiB
1.1 KiB
order | title | debug | ||||
---|---|---|---|---|---|---|
999 |
|
true |
zh-CN
Customize Progress Bar with progress
props.
en-US
Customize Progress Bar with progress
props.
import { Upload, message, Button } from 'antd';
import { UploadOutlined } from '@ant-design/icons';
const props = {
name: 'file',
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
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.`);
}
},
progress: {
strokeColor: {
'0%': '#108ee9',
'100%': '#87d068',
},
strokeWidth: 3,
},
};
ReactDOM.render(
<Upload {...props}>
<Button>
<UploadOutlined /> Click to Upload
</Button>
</Upload>,
mountNode,
);