UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

44 lines (36 loc) 921 B
--- category: 2 title: 点击上传 title_en: 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 'parkball'; const props = { name: 'file', action: '//jsonplaceholder.typicode.com/posts/', 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); ````