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

90 lines
2.1 KiB
Markdown
Raw Normal View History

2018-04-13 16:19:50 +08:00
<cn>
#### 用户头像
点击上传用户头像,并使用 `beforeUpload` 限制用户上传的图片格式和大小。
`beforeUpload` 的返回值可以是一个 Promise 以支持也支持异步检查
</cn>
<us>
#### Avatar
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.
</us>
```html
<template>
<a-upload
name="avatar"
listType="picture-card"
class="avatar-uploader"
:showUploadList="false"
action="//jsonplaceholder.typicode.com/posts/"
:beforeUpload="beforeUpload"
@change="handleChange"
>
<img v-if="imageUrl" :src="imageUrl" alt="" />
<div v-else>
<a-icon :type="loading ? 'loading' : 'plus'" />
<div class="ant-upload-text">Upload</div>
</div>
</a-upload>
</template>
<script>
2018-07-03 10:22:03 +08:00
function getBase64 (img, callback) {
const reader = new FileReader()
reader.addEventListener('load', () => callback(reader.result))
reader.readAsDataURL(img)
2018-04-13 16:19:50 +08:00
}
export default {
data () {
return {
loading: false,
imageUrl: '',
}
},
methods: {
2018-07-03 10:22:03 +08:00
handleChange (info) {
2018-04-13 16:19:50 +08:00
if (info.file.status === 'uploading') {
this.loading = true
2018-07-03 10:22:03 +08:00
return
2018-04-13 16:19:50 +08:00
}
if (info.file.status === 'done') {
// Get this url from response in real world.
getBase64(info.file.originFileObj, (imageUrl) => {
this.imageUrl = imageUrl
this.loading = false
2018-07-03 10:22:03 +08:00
})
2018-04-13 16:19:50 +08:00
}
},
2018-07-03 10:22:03 +08:00
beforeUpload (file) {
const isJPG = file.type === 'image/jpeg'
2018-04-13 16:19:50 +08:00
if (!isJPG) {
2018-07-03 10:22:03 +08:00
this.$message.error('You can only upload JPG file!')
2018-04-13 16:19:50 +08:00
}
2018-07-03 10:22:03 +08:00
const isLt2M = file.size / 1024 / 1024 < 2
2018-04-13 16:19:50 +08:00
if (!isLt2M) {
2018-07-03 10:22:03 +08:00
this.$message.error('Image must smaller than 2MB!')
2018-04-13 16:19:50 +08:00
}
2018-07-03 10:22:03 +08:00
return isJPG && isLt2M
2018-04-13 16:19:50 +08:00
},
},
}
</script>
2018-07-03 10:22:03 +08:00
<style>
2018-04-13 16:19:50 +08:00
.avatar-uploader > .ant-upload {
width: 128px;
height: 128px;
}
2018-07-03 10:22:03 +08:00
.ant-upload-select-picture-card i {
font-size: 32px;
color: #999;
}
.ant-upload-select-picture-card .ant-upload-text {
margin-top: 8px;
color: #666;
}
2018-04-13 16:19:50 +08:00
</style>
```