|
|
|
---
|
|
|
|
order: 12
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义交互图标
|
|
|
|
en-US: custom action icon
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `showUploadList` 设置列表交互图标。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use `showUploadList` for custom action icons of files.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Upload, Button } from 'antd';
|
|
|
|
import { UploadOutlined, StarOutlined } from '@ant-design/icons';
|
|
|
|
|
|
|
|
const props = {
|
|
|
|
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
|
|
|
|
onChange({ file, fileList }) {
|
|
|
|
if (file.status !== 'uploading') {
|
|
|
|
console.log(file, fileList);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
defaultFileList: [
|
|
|
|
{
|
|
|
|
uid: '1',
|
|
|
|
name: 'xxx.png',
|
|
|
|
status: 'done',
|
|
|
|
response: 'Server Error 500', // custom error message to show
|
|
|
|
url: 'http://www.baidu.com/xxx.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '2',
|
|
|
|
name: 'yyy.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'http://www.baidu.com/yyy.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '3',
|
|
|
|
name: 'zzz.png',
|
|
|
|
status: 'error',
|
|
|
|
response: 'Server Error 500', // custom error message to show
|
|
|
|
url: 'http://www.baidu.com/zzz.png',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
showUploadList: {
|
|
|
|
showDownloadIcon: true,
|
|
|
|
downloadIcon: 'download ',
|
|
|
|
showRemoveIcon: true,
|
|
|
|
removeIcon: <StarOutlined onClick={e => console.log(e, 'custom removeIcon event')} />,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Upload {...props}>
|
|
|
|
<Button icon={<UploadOutlined />}>Upload</Button>
|
|
|
|
</Upload>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|