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

93 lines
2.3 KiB
Markdown
Raw Normal View History

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)
2017-02-13 10:55:53 +08:00
````jsx
2016-11-25 15:00:28 +08:00
import { Upload, Icon, message } from 'antd';
function getBase64(img, callback) {
const reader = new FileReader();
reader.addEventListener('load', () => callback(reader.result));
reader.readAsDataURL(img);
}
function beforeUpload(file) {
const isJPG = file.type === 'image/jpeg';
if (!isJPG) {
message.error('You can only upload JPG file!');
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('Image must smaller than 2MB!');
}
return isJPG && isLt2M;
}
class Avatar extends React.Component {
2017-10-17 14:43:52 +08:00
state = {
loading: false,
};
2018-06-27 15:55:04 +08:00
2016-11-25 15:00:28 +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.
2017-10-17 14:43:52 +08:00
getBase64(info.file.originFileObj, imageUrl => this.setState({
imageUrl,
loading: false,
}));
2016-11-25 15:00:28 +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>
<Icon type={this.state.loading ? 'loading' : 'plus'} />
<div className="ant-upload-text">Upload</div>
</div>
);
2016-11-25 15:00:28 +08:00
const imageUrl = this.state.imageUrl;
return (
<Upload
name="avatar"
2017-10-17 14:43:52 +08:00
listType="picture-card"
className="avatar-uploader"
2016-11-25 15:00:28 +08:00
showUploadList={false}
2017-03-08 12:17:46 +08:00
action="//jsonplaceholder.typicode.com/posts/"
2016-11-25 15:00:28 +08:00
beforeUpload={beforeUpload}
onChange={this.handleChange}
>
2018-05-21 23:47:22 +08:00
{imageUrl ? <img src={imageUrl} alt="avatar" /> : uploadButton}
2016-11-25 15:00:28 +08:00
</Upload>
);
}
}
ReactDOM.render(<Avatar />, mountNode);
````
````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
}
````