UNPKG

cjd-parkball

Version:

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

53 lines (45 loc) 1.05 kB
--- category: 2 title: 已上传的文件列表 title_en: Default Files --- zh-CN 使用 `defaultFileList` 设置已上传的内容。 en-US Use `defaultFileList` for uploaded files when page init. ````jsx import { Upload, Button, Icon } from 'parkball'; const props = { action: '//jsonplaceholder.typicode.com/posts/', onChange({ file, fileList }) { if (file.status !== 'uploading') { console.log(file, fileList); } }, defaultFileList: [{ uid: '1', name: 'xxx.png', status: 'done', response: 'Server Error 500', // custom error message to show url: 'http://www.baidu.com/xxx.png', }, { uid: '2', name: 'yyy.png', status: 'done', url: 'http://www.baidu.com/yyy.png', }, { uid: '3', name: 'zzz.png', status: 'error', response: 'Server Error 500', // custom error message to show url: 'http://www.baidu.com/zzz.png', }], }; ReactDOM.render( <Upload {...props}> <Button> <Icon type="upload" /> Upload </Button> </Upload>, mountNode); ````