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

40 lines
1.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 7
2016-08-25 09:46:19 +08:00
title:
zh-CN: 限制用户上传的文件
en-US: Filter uploads files
2016-03-31 09:40:55 +08:00
---
2016-08-25 09:46:19 +08:00
## zh-CN
可以通过 `beforeUpload` 在文件上传之前进行干预,如限制用户只能上传 JPG 文件。
2016-05-25 17:32:41 +08:00
也支持异步检查,`beforeUpload` 的返回值可以是一个 Promise[示例](http://react-component.github.io/upload/examples/beforeUpload.html)。
2016-08-25 09:46:19 +08:00
## en-US
You can use `beforeUpload` to check whether user can upload, for example, limit file type only to be JPG. Checking can also be asynchronous. The return value can also be a Promise for function `beforeUpload`
````jsx
import { Upload, Button, Icon, message } from 'antd';
const props = {
action: '/upload.do',
2016-09-12 15:19:44 +08:00
multiple: true,
beforeUpload(file) {
const isJPG = file.type === 'image/jpeg';
if (!isJPG) {
2016-08-25 09:46:19 +08:00
message.error('you can only upload JPG file~');
}
return isJPG;
2016-05-11 09:32:33 +08:00
},
};
ReactDOM.render(
<Upload {...props}>
<Button type="ghost">
2016-08-25 09:46:19 +08:00
<Icon type="upload" /> upload
</Button>
</Upload>
, mountNode);
````