react学习(29)---ant design上传组件
Posted 小歌谣(公众号同名)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react学习(29)---ant design上传组件相关的知识,希望对你有一定的参考价值。
import { Upload, message, Button, Icon } from 'antd';
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.`);
}
},
};
ReactDOM.render(
<Upload {...props}>
<Button>
<Icon type="upload" /> Click to Upload
</Button>
</Upload>,
mountNode,
);
以上是关于react学习(29)---ant design上传组件的主要内容,如果未能解决你的问题,请参考以下文章
react学习(68)--ant design inputNumber
React开发(138):ant design学习指南之anchor处理