el-upload怎么拿到上传的图片的base64格式
Posted ฅ˙-˙ฅ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了el-upload怎么拿到上传的图片的base64格式相关的知识,希望对你有一定的参考价值。
这里只是本地上传,拿图片的base64,并不向后台直接上传,拿到base64后手动上传
上传前效果:
上传后效果:
.vue
<el-form-item label="礼品封面"> <el-upload class="avatar-uploader" action="" :show-file-list="false" :auto-upload="false" :on-change="changeFile"> <img id="giftImg" v-if="imageUrl" :src="imageUrl" class="avatar"> <el-button v-else slot="trigger" size="small" type="primary">选取文件</el-button> </el-upload> </el-form-item>
.ts
changeFile(file, fileList) { var This = this; //this.imageUrl = URL.createObjectURL(file.raw); var reader = new FileReader(); reader.readAsDataURL(file.raw); reader.onload = function(e){ this.result // 这个就是base64编码了 This.imageUrl = this.result; } }
有些东西就是试出来的,然后总结,~~~
以上是关于el-upload怎么拿到上传的图片的base64格式的主要内容,如果未能解决你的问题,请参考以下文章
el-upload上传文件后跳转页面后再返回已上传文件的回显
微信jssdk的getLocalImgData拿到的base64不完整