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
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Upload, Button, Icon } from 'antd';
|
2015-09-01 00:52:34 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const props = {
|
2017-03-08 12:17:46 +08:00
|
|
|
action: '//jsonplaceholder.typicode.com/posts/',
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
defaultFileList: [{
|
2017-02-19 01:39:41 +08:00
|
|
|
uid: 1,
|
2015-09-01 00:52:34 +08:00
|
|
|
name: 'xxx.png',
|
|
|
|
status: 'done',
|
2017-10-09 13:23:20 +08:00
|
|
|
reponse: 'Server Error 500', // custom error message to show
|
2016-05-11 09:32:33 +08:00
|
|
|
url: 'http://www.baidu.com/xxx.png',
|
2015-09-01 00:52:34 +08:00
|
|
|
}, {
|
2017-02-19 01:39:41 +08:00
|
|
|
uid: 2,
|
2015-09-01 00:52:34 +08:00
|
|
|
name: 'yyy.png',
|
|
|
|
status: 'done',
|
2016-05-11 09:32:33 +08:00
|
|
|
url: 'http://www.baidu.com/yyy.png',
|
2017-02-19 01:39:41 +08:00
|
|
|
}, {
|
|
|
|
uid: 3,
|
|
|
|
name: 'zzz.png',
|
|
|
|
status: 'error',
|
2017-10-09 13:23:20 +08:00
|
|
|
reponse: 'Server Error 500', // custom error message to show
|
2017-02-19 01:39:41 +08:00
|
|
|
url: 'http://www.baidu.com/zzz.png',
|
2016-05-11 09:32:33 +08:00
|
|
|
}],
|
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>
|
2016-08-25 09:46:19 +08:00
|
|
|
<Icon type="upload" /> Upload
|
2015-10-08 15:13:04 +08:00
|
|
|
</Button>
|
2015-09-01 00:52:34 +08:00
|
|
|
</Upload>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-09-01 00:52:34 +08:00
|
|
|
````
|