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
2020-01-30 13:06:17 +08:00
使用 `fileList` 对列表进行完全控制,可以实现各种自定义功能,以下演示二种情况:
2015-09-01 00:52:34 +08:00
2019-05-07 14:57:32 +08:00
1. 上传列表数量的限制。
2015-09-01 00:52:34 +08:00
2019-05-07 14:57:32 +08:00
2. 读取远程路径并显示链接。
2015-09-01 00:52:34 +08:00
2016-08-25 09:46:19 +08:00
## en-US
2020-01-30 13:06:17 +08:00
You can gain full control over filelist by configuring `fileList` . You can accomplish all kinds of customed functions. The following shows two circumstances:
2016-08-25 09:46:19 +08:00
2019-05-07 14:57:32 +08:00
1. limit the number of uploaded files.
2016-09-19 11:01:58 +08:00
2019-05-07 14:57:32 +08:00
2. read from response and show file link.
2016-09-19 11:01:58 +08:00
2022-05-19 09:46:26 +08:00
```tsx
2019-11-28 12:34:33 +08:00
import { UploadOutlined } from '@ant-design/icons';
2022-05-19 09:46:26 +08:00
import type { UploadProps } from 'antd';
2022-05-21 22:14:15 +08:00
import { Button, Upload } from 'antd';
import type { UploadFile } from 'antd/es/upload/interface';
import React, { useState } from 'react';
2022-05-19 09:46:26 +08:00
const App: React.FC = () => {
const [fileList, setFileList] = useState< UploadFile [ ] > ([
{
uid: '-1',
name: 'xxx.png',
status: 'done',
url: 'http://www.baidu.com/xxx.png',
},
]);
const handleChange: UploadProps['onChange'] = info => {
let newFileList = [...info.fileList];
2015-09-01 00:52:34 +08:00
2016-08-25 09:46:19 +08:00
// 1. Limit the number of uploaded files
2018-07-28 23:50:47 +08:00
// Only to show two recent uploaded files, and old ones will be replaced by the new
2022-05-19 09:46:26 +08:00
newFileList = fileList.slice(-2);
2015-09-01 00:52:34 +08:00
2018-07-28 23:50:47 +08:00
// 2. Read from response and show file link
2022-05-19 09:46:26 +08:00
newFileList = 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;
});
2022-05-19 09:46:26 +08:00
setFileList(newFileList);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2022-05-19 09:46:26 +08:00
const props = {
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
onChange: handleChange,
multiple: true,
};
return (
< Upload { . . . props } fileList = {fileList} >
< Button icon = {<UploadOutlined / > }>Upload< / Button >
< / Upload >
);
};
2015-09-01 00:52:34 +08:00
2022-04-20 09:48:26 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```