element el-upload 踩坑记录

本文探讨了在使用Element UI和Vue.js实现图片上传功能时遇到的404错误。问题出现在图片地址被立即赋值但文件实际未完全存储。通过设置30ms延迟解决了这个问题,确保文件存储完成后再更新图像源。
摘要由CSDN通过智能技术生成

element+vue 实现上传图片功能

<el-upload
			class="avatar-uploader"
			:action="$nodeUrl + '/uploadFile'"
			:show-file-list="false"
			:on-change="changeFrontCover"
			:on-success="uploadOver"
			accept="image/jpg,image/jpeg,image/png"
>
	<img v-show="form.image" id="img" :src="form.image" class="avatar" />
	<i v-show="!form.image" class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
// 文件上传结束
uploadOver(response) {
	if (response.mtycode == 200) {
		this.form.image = response.data;
	} else {
		this.$message.warn('图片上传失败,请重新上传');
	}
},
// 文件上传结束
uploadOver(response) {
	if (response.mtycode == 200) {
		this.$nextTick(()=>{
			this.form.image = response.data;
		})
	} else {
		this.$message.warn('图片上传失败,请重新上传');
	}
},

请添加图片描述

上传图片后拿到文件地址,对image进行赋值,dom进行挂载更新,控制台报错404,使用该文件地址粘贴进项目中作为常量使用,一切正常,使用$nextTick,$foreforceUpdate() 并未解决问题

解决思路: 个人判断应该是异步问题
  1. 可能是文件服务器minio存储文件后将文件地址返回,实际文件并为完成存储(仅作为假想,并未证实)
  2. 添加延时器解决问题,测试得出最小延时为30ms
uploadOver(response) {
	if (response.mtycode == 200) {
		settimeout(()=>{
			this.form.image = response.data;
		},30)
	} else {
		this.$message.warn('图片上传失败,请重新上传');
	}
},
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值