ant-design/components/upload/demo/defaultFileList.md

49 lines
790 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-08-25 09:46:19 +08:00
title:
zh-CN: 传入已上传的文件
en-US: Set files that have been uploaded
2016-03-31 09:40:55 +08:00
---
2016-08-25 09:46:19 +08:00
## zh-CN
对已上传的文件进行编辑。
2016-08-25 09:46:19 +08:00
## en-US
Edit uploaded files
````jsx
import { Upload, Button, Icon } from 'antd';
const props = {
action: '/upload.do',
onChange(info) {
if (info.file.status !== 'uploading') {
console.log(info.file);
console.log(info.fileList);
}
},
defaultFileList: [{
2015-09-01 11:26:33 +08:00
uid: -1,
name: 'xxx.png',
status: 'done',
2016-05-11 09:32:33 +08:00
url: 'http://www.baidu.com/xxx.png',
}, {
2015-09-01 11:26:33 +08:00
uid: -2,
name: 'yyy.png',
status: 'done',
2016-05-11 09:32:33 +08:00
url: 'http://www.baidu.com/yyy.png',
}],
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<Upload {...props}>
<Button type="ghost">
2016-08-25 09:46:19 +08:00
<Icon type="upload" /> Upload
</Button>
</Upload>
, mountNode);
````