最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

vue使用 elementUI中el-upload的遇到的問(wèn)題總結(jié)

2023-06-12 10:22 作者:限量版范兒  | 我要投稿


使用場(chǎng)景,使用el-upload上傳文件,選擇文件后不立即上傳到服務(wù)器上,點(diǎn)擊提交按鈕時(shí)與其他form表單數(shù)據(jù)一起提交,類似的需求,相信有很多小伙伴遇到,可能也會(huì)遇到跟我一起的問(wèn)題,在這里記錄一下

<el-upload ?class="upload-file" ?action="" ?:on-change="handleChange"> ?<el-button size="small" type="primary">點(diǎn)擊上傳</el-button> ?<div slot="tip" class="el-upload__tip">只能上傳jpg/png文件,且不超過(guò)500kb</div> </el-upload>

  

問(wèn)題1:el-upload文件上傳組件,設(shè)置auto-upload為false,on-change事件只觸發(fā)一次

由于原生的input type="file"不管文件上傳成功與否,已添加的文件已經(jīng)被記錄了,所以上傳文件時(shí),不會(huì)觸發(fā)change事件,這里我們就把已經(jīng)添加的文件記錄清除來(lái)解決該問(wèn)題

html(給el-upload添加ref屬性)

<el-upload ?class="upload-file" ?ref="upload" ?action="" ?:on-change="handleChange"> ?<el-button size="small" type="primary">點(diǎn)擊上傳</el-button> ?<div slot="tip" class="el-upload__tip">只能上傳jpg/png文件,且不超過(guò)500kb</div> </el-upload>

  

javascript(使用一個(gè)變量保存已上傳的文件)

handleChange(file) { ? ?this.file = file; ? ?this.$refs.upload.clearFiles(); // 清空文件}

問(wèn)題2:file與form表單數(shù)據(jù)一起提交

/** 保存 */saveUpload() { ? ? ?if (!this.file) return this.$message.warning('請(qǐng)選擇文件') ? ? ? ?this.param = new FormData() ? ? ? ?// 文件 ? ? ?this.param.append('file', this.file.raw, this.file.name) ? ? ? ?// ID ? ? ? ?this.param.append('id', this.id) ? ? ? ?const token = JSON.parse(localStorage.getItem("token")) || '' ? ? ? ?// 設(shè)置請(qǐng)求頭 ? ? ? ?let config = { ? ? ? ? ? ?headers: { ? ? ? ? ? ?'Content-Type': 'multipart/form-data', ? ? ? ? ? ?'Authorization': token ? ? ? ?} ? ? ?}; ? ? ?axios.post(this.uploadUrl, this.param, config).then( ? ? ? ? ? ? ?response => { console.log('res', response) }, ? ? ? ? ? ? ?err => { reject(err); } ? ? ? ?).catch((error) => { reject(error) }) }

?

至此,問(wèn)題總結(jié)記錄完畢

原文鏈接:https://www.dianjilingqu.com/759317.html

vue使用 elementUI中el-upload的遇到的問(wèn)題總結(jié)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
资源县| 文登市| 德保县| 安乡县| 东乌珠穆沁旗| 涟水县| 垦利县| 古浪县| 敖汉旗| 秀山| 温泉县| 襄垣县| 乌审旗| 吉安县| 梨树县| 福海县| 尉氏县| 鞍山市| 淮阳县| 双柏县| 宣武区| 中西区| 古蔺县| 壤塘县| 专栏| 辽源市| 镇巴县| 邮箱| 大理市| 紫阳县| 长沙市| 香港| 贵阳市| 福贡县| 连南| 胶南市| 湛江市| 南投市| 白山市| 伊吾县| 房山区|