2016-03-31 09:40:55 +08:00
---
2016-11-25 15:00:28 +08:00
order: 4
2016-09-19 11:01:58 +08:00
title:
2016-08-25 09:46:19 +08:00
zh-CN: 完全控制的上传列表
en-US: Complete control over file list
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
2015-09-01 00:52:34 +08:00
使用 `fileList` 对列表进行完全控制,可以实现各种自定义功能,以下演示三种情况:
1) 上传列表数量的限制。
2) 读取远程路径并显示链接。
3) 按照服务器返回信息筛选成功上传的文件。
2016-08-25 09:46:19 +08:00
## en-US
You can gain full control over filelist by configuring `fileList` . You can accomplish all kinds of customed functions. The following shows three circumstances:
2016-09-19 11:01:58 +08:00
1) limit the number of uploaded files.
2) read from response and show file link.
3) filter successfully uploaded files according to response from server.
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';
2017-02-19 21:50:06 +08:00
class MyUpload extends React.Component {
state = {
fileList: [{
uid: -1,
name: 'xxx.png',
status: 'done',
url: 'http://www.baidu.com/xxx.png',
}],
}
handleChange = (info) => {
2015-09-01 00:52:34 +08:00
let fileList = info.fileList;
2016-08-25 09:46:19 +08:00
// 1. Limit the number of uploaded files
// Only to show two recent uploaded files, and old ones will be replaced by the new
2015-09-01 11:26:33 +08:00
fileList = fileList.slice(-2);
2015-09-01 00:52:34 +08:00
2016-08-25 09:46:19 +08:00
// 2. read from response and show file link
2016-01-23 15:22:16 +08:00
fileList = fileList.map((file) => {
2015-09-01 00:52:34 +08:00
if (file.response) {
2016-08-25 09:46:19 +08:00
// Component will show file.url as link
2016-01-15 15:41:47 +08:00
file.url = file.response.url;
2015-09-01 00:52:34 +08:00
}
return file;
});
2016-08-25 09:46:19 +08:00
// 3. filter successfully uploaded files according to response from server
2016-01-23 15:22:16 +08:00
fileList = fileList.filter((file) => {
2015-09-01 00:52:34 +08:00
if (file.response) {
2016-01-15 15:41:47 +08:00
return file.response.status === 'success';
2015-09-01 00:52:34 +08:00
}
return true;
});
2015-11-25 17:35:49 +08:00
this.setState({ fileList });
2017-02-19 21:50:06 +08:00
}
2015-09-01 00:52:34 +08:00
render() {
2015-10-28 20:55:49 +08:00
const props = {
2017-03-08 12:17:46 +08:00
action: '//jsonplaceholder.typicode.com/posts/',
2015-09-09 14:58:17 +08:00
onChange: this.handleChange,
2016-05-11 09:32:33 +08:00
multiple: true,
2015-09-01 00:52:34 +08:00
};
2016-01-07 16:29:12 +08:00
return (
< Upload { . . . props } fileList = {this.state.fileList} >
2017-02-04 22:35:33 +08:00
< Button >
2016-08-25 09:46:19 +08:00
< Icon type = "upload" / > upload
2016-01-07 16:29:12 +08:00
< / Button >
< / Upload >
);
2017-02-19 21:50:06 +08:00
}
}
2015-09-01 00:52:34 +08:00
2015-12-29 12:08:58 +08:00
ReactDOM.render(< MyUpload / > , mountNode);
2015-09-01 00:52:34 +08:00
````