2016-11-25 15:00:28 +08:00
---
order: 1
title:
zh-CN: 用户头像
en-US: Avatar
---
## zh-CN
点击上传用户头像,并使用 `beforeUpload` 限制用户上传的图片格式和大小。
2018-10-07 00:01:31 +08:00
> `beforeUpload` 的返回值可以是一个 Promise 以支持异步处理,如服务端校验等:[示例](http://react-component.github.io/upload/examples/beforeUpload.html)。
2016-11-25 15:00:28 +08:00
## en-US
Click to upload user's avatar, and validate size and format of picture with `beforeUpload` .
> The return value of function `beforeUpload` can be a Promise to check asynchronously. [demo](http://react-component.github.io/upload/examples/beforeUpload.html)
2019-05-07 14:57:32 +08:00
```jsx
2019-08-13 14:07:17 +08:00
import { Upload, message } from 'antd';
2019-11-28 12:34:33 +08:00
import { LoadingOutlined, PlusOutlined } from '@ant-design/icons';
2016-11-25 15:00:28 +08:00
function getBase64(img, callback) {
const reader = new FileReader();
reader.addEventListener('load', () => callback(reader.result));
reader.readAsDataURL(img);
}
function beforeUpload(file) {
2019-07-22 19:18:47 +08:00
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png';
if (!isJpgOrPng) {
message.error('You can only upload JPG/PNG file!');
2016-11-25 15:00:28 +08:00
}
const isLt2M = file.size / 1024 / 1024 < 2 ;
if (!isLt2M) {
message.error('Image must smaller than 2MB!');
}
2019-07-22 19:18:47 +08:00
return isJpgOrPng & & isLt2M;
2016-11-25 15:00:28 +08:00
}
class Avatar extends React.Component {
2017-10-17 14:43:52 +08:00
state = {
loading: false,
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
handleChange = info => {
2017-10-17 14:43:52 +08:00
if (info.file.status === 'uploading') {
this.setState({ loading: true });
return;
}
2016-11-25 15:00:28 +08:00
if (info.file.status === 'done') {
// Get this url from response in real world.
2019-05-07 14:57:32 +08:00
getBase64(info.file.originFileObj, imageUrl =>
this.setState({
imageUrl,
loading: false,
}),
);
2016-11-25 15:00:28 +08:00
}
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2016-11-25 15:00:28 +08:00
render() {
2017-10-17 14:43:52 +08:00
const uploadButton = (
< div >
2019-11-28 12:34:33 +08:00
{this.state.loading ? < LoadingOutlined / > : < PlusOutlined / > }
2017-10-17 14:43:52 +08:00
< div className = "ant-upload-text" > Upload< / div >
< / div >
);
2019-06-19 19:09:08 +08:00
const { imageUrl } = this.state;
2016-11-25 15:00:28 +08:00
return (
2019-07-22 19:18:47 +08:00
< Upload
name="avatar"
listType="picture-card"
className="avatar-uploader"
showUploadList={false}
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
beforeUpload={beforeUpload}
onChange={this.handleChange}
>
{imageUrl ? < img src = {imageUrl} alt = "avatar" style = {{ width: ' 100 % ' } } / > : uploadButton}
< / Upload >
2016-11-25 15:00:28 +08:00
);
}
}
ReactDOM.render(< Avatar / > , mountNode);
2019-05-07 14:57:32 +08:00
```
2016-11-25 15:00:28 +08:00
2019-05-07 14:57:32 +08:00
```css
2017-10-17 14:43:52 +08:00
.avatar-uploader > .ant-upload {
width: 128px;
height: 128px;
2016-11-25 15:00:28 +08:00
}
2019-05-07 14:57:32 +08:00
```