2016-03-31 09:40:55 +08:00
|
|
|
---
|
2016-11-25 15:00:28 +08:00
|
|
|
order: 2
|
2017-02-19 01:39:41 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 已上传的文件列表
|
|
|
|
en-US: Default Files
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-09-01 00:52:34 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2017-02-19 01:39:41 +08:00
|
|
|
使用 `defaultFileList` 设置已上传的内容。
|
2015-09-01 00:52:34 +08:00
|
|
|
|
2016-08-25 09:46:19 +08:00
|
|
|
## en-US
|
|
|
|
|
2017-02-19 01:39:41 +08:00
|
|
|
Use `defaultFileList` for uploaded files when page init.
|
2016-08-25 09:46:19 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Upload, Button } from 'antd';
|
|
|
|
import { Upload as IconUpload } from '@ant-design/icons';
|
2015-09-01 00:52:34 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const props = {
|
2019-04-30 16:10:00 +08:00
|
|
|
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
|
2017-02-19 01:39:41 +08:00
|
|
|
onChange({ file, fileList }) {
|
|
|
|
if (file.status !== 'uploading') {
|
|
|
|
console.log(file, fileList);
|
2015-09-01 00:52:34 +08:00
|
|
|
}
|
|
|
|
},
|
2019-05-07 14:57:32 +08:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
],
|
2015-09-01 00:52:34 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-09-01 00:52:34 +08:00
|
|
|
<Upload {...props}>
|
2017-02-04 22:35:33 +08:00
|
|
|
<Button>
|
2019-08-13 14:07:17 +08:00
|
|
|
<IconUpload /> Upload
|
2015-10-08 15:13:04 +08:00
|
|
|
</Button>
|
2018-06-27 15:55:04 +08:00
|
|
|
</Upload>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|