溫馨提示×

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

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

前端vue+express怎么實(shí)現(xiàn)文件的上傳下載

發(fā)布時(shí)間:2022-01-04 17:19:43 來源:億速云 閱讀:182 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“前端vue+express怎么實(shí)現(xiàn)文件的上傳下載”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“前端vue+express怎么實(shí)現(xiàn)文件的上傳下載”吧!

新建server.js

yarn init -y
yarn add express nodemon -D
var express = require("express");
const fs = require("fs");
var path = require("path");
const multer = require("multer"); //指定路徑的

var app = express();
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// 前端解決跨域問題
app.all("*", (req, res, next) => {
  res.header("Access-Control-Allow-Origin", "*");
  next();
});
// 訪問靜態(tài)資源
app.use(express.static(path.join(__dirname)));

// 文件上傳
app.post("/upload", multer({ dest: "./public" }).any(), (req, res) => {
  const { fieldname, originalname } = req.files[0];
  // 創(chuàng)建一個(gè)新路徑
  const name = fieldname.slice(0, fieldname.indexOf("."));
  const newName = "public/" + name + path.parse(originalname).ext;
  fs.rename(req.files[0].path, newName, function (err) {
    if (err) {
      res.send({ code: 0, msg: "上傳失敗", data: [] });
    } else {
      res.send({ code: 1, msg: "上傳成功", data: newName });
    }
  });
});
// 文件下載
app.get('/download', function(req, res) {
  res.download('./public/test.xls');
});

// 圖片下載
app.get('/download/img', function(req, res) {
  res.download('./public/2.jpg');
});

let port = 9527;
app.listen(port, () => console.log(`端口啟動(dòng): http://localhost:${port}`));

(1):前端文件上傳請(qǐng)求

第一種: form表單

  <form action="http://localhost:9527/upload" method="POST" encType="multipart/form-data">
      <input type="file" name="user"/>
      <input type="submit" />
    </form>

前端vue+express怎么實(shí)現(xiàn)文件的上傳下載

第一種: input輸入框

   <input type="file"  @change="changeHandler($event)"/>
     changeHandler(event) {
      let files  = event.target.files[0];
      console.log("files",files)
      let data = new FormData();
      data.append(files.name,files);
      console.log("data",data)
      axios.post("http://localhost:9527/upload",data,{
        headers:{
          "Content-Type":"multipart/form-data"
        }
      }).then(res =>{
        console.log("res",res)
      })
    },

前端vue+express怎么實(shí)現(xiàn)文件的上傳下載

(2):前端文件下載

第一種: 后端返回一個(gè)下載的鏈接地址,前端直接使用 即可
第二種: 使用二進(jìn)制流文件下載

    <input type="button" value="點(diǎn)擊下載" @click="handleDownload">
      handleDownload() {  
    axios({  
      method: 'get',  
      url: "http://localhost:9527/download",  
      data: {    
        test: "test data"  
      },  
      responseType: "arraybuffer" // arraybuffer是js中提供處理二進(jìn)制的接口
    }).then(response => {          
      // 用返回二進(jìn)制數(shù)據(jù)創(chuàng)建一個(gè)Blob實(shí)例 
      if(!response) return;
      let blob = new Blob([response.data], {            
        type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", 
      }) // for .xlsx files          
      // 通過URL.createObjectURL生成文件路徑          
      let url = window.URL.createObjectURL(blob) 
      console.log("url==========",url)        
      // 創(chuàng)建a標(biāo)簽          
      let ele = document.createElement("a")          
      ele.style.display = 'none'          
      // 設(shè)置href屬性為文件路徑,download屬性可以設(shè)置文件名稱          
      ele.href = url          
      ele.download = this.name          
      // 將a標(biāo)簽添加到頁面并模擬點(diǎn)擊          
      document.querySelectorAll("body")[0].appendChild(ele)          
      ele.click()          
      // 移除a標(biāo)簽          
      ele.remove()        
    });
  },

前端vue+express怎么實(shí)現(xiàn)文件的上傳下載

(3) 附加:二進(jìn)制流圖片的下載

   // 二進(jìn)制流圖片文件的下載
  downLoadImg() {
     axios({
        method: 'get',
        url: `http://localhost:9527/download/img`,
        responseType: 'arraybuffer',
        params: {
          id: 12
        }
      }).then(res => {
        var src = 'data:image/jpg;base64,' + btoa(new Uint8Array(res.data).reduce((data, byte) => data + String.fromCharCode(byte), ''))
       // this.srcImg = src // 圖片回顯
        var a = document.createElement('a')
        a.href = src
        a.download = '2.jpg'
        a.click()
        a.remove()
      })
    }

前端vue+express怎么實(shí)現(xiàn)文件的上傳下載

到此,相信大家對(duì)“前端vue+express怎么實(shí)現(xiàn)文件的上傳下載”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(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