|
|
|
---
|
|
|
|
order: 1
|
|
|
|
title: 传入已上传的文件
|
|
|
|
---
|
|
|
|
|
|
|
|
对已上传的文件进行编辑。
|
|
|
|
|
|
|
|
````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: [{
|
|
|
|
uid: -1,
|
|
|
|
name: 'xxx.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'http://www.baidu.com/xxx.png',
|
|
|
|
}, {
|
|
|
|
uid: -2,
|
|
|
|
name: 'yyy.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'http://www.baidu.com/yyy.png',
|
|
|
|
}],
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Upload {...props}>
|
|
|
|
<Button type="ghost">
|
|
|
|
<Icon type="upload" /> 点击上传
|
|
|
|
</Button>
|
|
|
|
</Upload>
|
|
|
|
, mountNode);
|
|
|
|
````
|