溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vuejs如何實(shí)現(xiàn)上傳文件

發(fā)布時(shí)間:2021-09-26 09:20:41 來源:億速云 閱讀:150 作者:柒染 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)vuejs如何實(shí)現(xiàn)上傳文件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

vuejs實(shí)現(xiàn)上傳文件的方法:1、創(chuàng)建vue頁面代碼;2、通過“beforeUpload(file){...}”方法實(shí)現(xiàn)上傳之前的大小校驗(yàn);3、實(shí)現(xiàn)上傳文件的相關(guān)邏輯即可。

本文操作環(huán)境:Windows7系統(tǒng)、vue2.9.6版,DELL G3電腦。

vuejs怎么實(shí)現(xiàn)上傳文件?

vue實(shí)現(xiàn)文件上傳功能

vue 文件上傳,供大家參考,具體內(nèi)容如下

首先 先說一下想要實(shí)現(xiàn)的效果

vuejs如何實(shí)現(xiàn)上傳文件

就如截圖所見,需要將企業(yè)和需要上傳的文件提交到后臺(tái)處理,那么接下來就說如何實(shí)現(xiàn)

vue 實(shí)現(xiàn)

vue 頁面代碼

<el-upload
class="upload-demo"
ref="upload"
action="doUpload"
:limit="1"
:file-list="fileList"
:before-upload="beforeUpload">
<el-button slot="trigger" size="small" type="primary">選取文件</el-button>
<a href="./static/moban.xlsx" rel="external nofollow" download="模板"><el-button size="small" type="success">下載模板</el-button></a>
<!-- <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">上傳到服務(wù)器</el-button> -->
<div slot="tip" class="el-upload__tip">只能上傳excel文件,且不超過5MB</div>
<div slot="tip" class="el-upload-list__item-name">{{fileName}}</div>
</el-upload> 
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false">取消</el-button>
<el-button type="primary" @click="submitUpload()">確定</el-button>
</span>

上傳之前的大小校驗(yàn)

beforeUpload(file){
 debugger
 console.log(file,'文件');
 this.files = file;
 const extension = file.name.split('.')[1] === 'xls'
 const extension2 = file.name.split('.')[1] === 'xlsx'
 const isLt2M = file.size / 1024 / 1024 < 5
 if (!extension && !extension2) {
  this.$message.warning('上傳模板只能是 xls、xlsx格式!')
  return
 }
 if (!isLt2M) {
  this.$message.warning('上傳模板大小不能超過 5MB!')
  return
 }
 this.fileName = file.name;
 return false // 返回false不會(huì)自動(dòng)上傳
 },

手動(dòng)上傳確認(rèn)提交

submitUpload() {
 debugger
 console.log('上傳'+this.files.name)
 if(this.fileName == ""){
  this.$message.warning('請選擇要上傳的文件!')
  return false
 }
 let fileFormData = new FormData();
 fileFormData.append('file', this.files, this.fileName);//filename是鍵,file是值,就是要傳的文件,test.zip是要傳的文件名
 let requestConfig = {
  headers: {
  'Content-Type': 'multipart/form-data'
  },
 }
 this.$http.post(`/basedata/oesmembers/upload?companyId=`+this.company, fileFormData, requestConfig).then((res) => {
  debugger
  if (data && data.code === 0) {
  this.$message({
  message: '操作成功',
  type: 'success',
  duration: 1500,
  onClose: () => {
  this.visible = false
  this.$emit('refreshDataList')
  }
  })
  } else {
  this.$message.error(data.msg)
  }
 }) 
 }

后臺(tái)

/**
 * 上傳文件
 */
 @PostMapping("/upload")
 @RequiresPermissions("basedata:oesmembers:upload")
 public R upload(@RequestParam("file") MultipartFile file, @RequestParam("companyId") Integer companyId) {
 System.out.println(companyId);
 if (file.isEmpty()) {
  throw new RRException("上傳文件不能為空");
 }
 //上傳文件 相關(guān)邏輯
 
 return R.ok();
}


關(guān)于vuejs如何實(shí)現(xiàn)上傳文件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI