溫馨提示×

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

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

vue如何使用el-upload上傳文件及Feign服務(wù)間傳遞文件

發(fā)布時(shí)間:2021-07-20 10:31:02 來源:億速云 閱讀:153 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了vue如何使用el-upload上傳文件及Feign服務(wù)間傳遞文件,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、前端代碼

<el-upload class="step_content" drag
         action="string"
         ref="upload"
         :multiple="false"
         :http-request="createAppVersion"
         :data="appVersion"
         :auto-upload="false"
         :limit="1"
         :on-change="onFileUploadChange"
         :on-remove="onFileRemove">
    <i class="el-icon-upload"></i>
    <div class="el-upload__text">將文件拖到此處,或<em>點(diǎn)擊上傳</em></div>

</el-upload>

 <div class="mgt30">
    <el-button v-show="createAppVisible" :disabled="createAppDisable" type="primary" class="mgt30"
          @click="onSubmitClick">立即創(chuàng)建
    </el-button>
 </div>

....

 onSubmitClick() {
    this.$refs.upload.submit();
   },

   createAppVersion(param) {
    this.globalLoading = true;

    const formData = new FormData();
    formData.append('file', param.file);
    formData.append('appVersion', JSON.stringify(this.appVersion));

    addAppVersionApi(formData).then(res => {
     this.globalLoading = false;
     this.$message({message: '創(chuàng)建APP VERION 成功', type: 'success'});
     this.uploadFinish();
    }).catch(reason => {
     this.globalLoading = false;
     this.showDialog(reason);
    })

   },

說明:

  1. el-upload 的 ref="upload" 給這個(gè)組件起個(gè)變量名,以便 js邏輯代碼可以引用

  2. http-request="createAppVersion" el-upload 上傳使使用自定義的方法

  3. :data="appVersion" 上傳時(shí)提交的表單數(shù)據(jù)

  4. onSubmitClick 方法中會(huì)調(diào)用el-upload.submit()方法,進(jìn)而調(diào)用createAppVersion()方法

  5. 組成表單參數(shù),取得上傳的file 和 其它參數(shù)

const formData = new FormData();
formData.append('file', param.file);
formData.append('appVersion', JSON.stringify(this.appVersion));

6.addAppVersionApi 最終會(huì)調(diào)用下面的方法,其中formData就是param, 請(qǐng)求需要加header: 'Content-Type': 'multipart/form-data'

 function httpPostMutipartFileAsyn(url, param) {
 return new Promise((resolve, reject) => {
  request({
   url: url,
   headers: {
    'Content-Type': 'multipart/form-data'
   },
   method: 'post',
   data: param
  }).then(response => {
   if (response.data.status.code === 0) {
    resolve(response.data)
   } else {
    reject(response.data.status)
   }
  }).catch(response => {
   reject(response)
  })
 })
}

二、后端代碼

1.后端controller接口

@PostMapping("/version/add")
  public RestResult addAppVersion(@RequestParam("appVersion") String appVersion,
                  @RequestParam("file") MultipartFile multipartFile) {

    ....
    
    return new RestResult();
  }

三、Feign 實(shí)現(xiàn)服務(wù)間傳遞MultipartFile參數(shù)

Controller的addAppVersion()接口,收到上傳的文件后,需要通過Http調(diào)用遠(yuǎn)程接口,將文件上傳到資源服務(wù)。一開始嘗試使用OKHttp 和 RestTemplate 實(shí)現(xiàn),但是這兩種方法都必須將文件先保存,無法直接傳遞MultipartFile參數(shù),然后才能通過OKHttp 和 RestTemplate提供的相關(guān)接口去實(shí)現(xiàn)。 本著不想在本地保存臨時(shí)文件的,找到了通過Feign解決的一種方式

1.添加如下依賴:

<dependency>
      <groupId>io.github.openfeign.form</groupId>
      <artifactId>feign-form</artifactId>
      <version>3.0.3</version>
    </dependency>

    <dependency>
      <groupId>io.github.openfeign.form</groupId>
      <artifactId>feign-form-spring</artifactId>
      <version>3.0.3</version>
    </dependency>

    <dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.3.3</version>
    </dependency>

2.Feign 接口實(shí)現(xiàn)

@FeignClient(name = "resource-client",url = "http://xxxx",path = "resource",configuration = ResourceServiceFeignClient.MultipartSupportConfig.class)
public interface ResourceServiceFeignClient {

  @PostMapping(value = "/upload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
  Resource upload(@RequestPart("file") MultipartFile file);

  class MultipartSupportConfig {
    @Bean
    public Encoder feignFormEncoder() {
      return new SpringFormEncoder();
    }
  }

}

這里Feign是通過url實(shí)現(xiàn)的接口調(diào)用,并沒有通過SpringCloud注冊(cè)中心服務(wù)發(fā)現(xiàn)來實(shí)現(xiàn)接口調(diào)用,因?yàn)槲宜诘捻?xiàng)目是獨(dú)立在服務(wù)化體系外的

3.將Feign接口自動(dòng)注入,正常使用就行了。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“vue如何使用el-upload上傳文件及Feign服務(wù)間傳遞文件”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

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

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

AI