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

61 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-11-25 15:00:28 +08:00
order: 2
2017-02-19 01:39:41 +08:00
title:
zh-CN: 已上传的文件列表
en-US: Default Files
2016-03-31 09:40:55 +08:00
---
2016-08-25 09:46:19 +08:00
## zh-CN
2017-02-19 01:39:41 +08:00
使用 `defaultFileList` 设置已上传的内容。
2016-08-25 09:46:19 +08:00
## en-US
2017-02-19 01:39:41 +08:00
Use `defaultFileList` for uploaded files when page init.
2016-08-25 09:46:19 +08:00
```tsx
import { UploadOutlined } from '@ant-design/icons';
import type { UploadProps } from 'antd';
2022-05-21 22:14:15 +08:00
import { Button, Upload } from 'antd';
import React from 'react';
const props: UploadProps = {
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
2017-02-19 01:39:41 +08:00
onChange({ file, fileList }) {
if (file.status !== 'uploading') {
console.log(file, fileList);
}
},
2019-05-07 14:57:32 +08:00
defaultFileList: [
{
uid: '1',
name: 'xxx.png',
status: 'uploading',
2019-05-07 14:57:32 +08:00
url: 'http://www.baidu.com/xxx.png',
percent: 33,
2019-05-07 14:57:32 +08:00
},
{
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',
},
],
};
const App: React.FC = () => (
<Upload {...props}>
<Button icon={<UploadOutlined />}>Upload</Button>
</Upload>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```