溫馨提示×

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

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

使用node.js怎么實(shí)現(xiàn)多文件上傳

發(fā)布時(shí)間:2021-04-16 16:24:06 來源:億速云 閱讀:344 作者:Leah 欄目:web開發(fā)

使用node.js怎么實(shí)現(xiàn)多文件上傳?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

// 前端 upload.html
<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title>上傳文件demo</title>
 <style media="screen">
  .progress{
  width: 50%;
  height: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 10px;
  position: relative;
  }
  .progress>span{
  display: inline-block;
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: rgb(98, 230, 74);
  transition: width 0.3s ease-out;
  }
 </style>
 </head>
 <body>
 <input id="file" type="file" multiple>
 <div class="progress">
  <span></span>
 </div>
 <script type="text/javascript">
  var http = function (option) {
  // 過濾請(qǐng)求成功后的響應(yīng)對(duì)象
  function getBody (xhr) {
   var text = xhr.responseText || xhr.response
   if (!text) {
   return text
   }

   try {
   return JSON.parse(text)
   } catch (err) {
   return text
   }
  }

  var xhr = new XMLHttpRequest();
  // 自定義 beforeSend 函數(shù)
  if(option.beforeSend instanceof Function) {
   if (option.beforeSend(xhr) === false) {
   return false
   }
  }

  xhr.onreadystatechange = function () {
   if (xhr.status === 200) {
   if (xhr.readyState === 4) {
    // 成功回調(diào)
    option.onSuccess(getBody(xhr))
   }
   }
  }

  // 請(qǐng)求失敗
  xhr.onerror = function (err) {
   option.onError(err)
  }

  xhr.open(option.type, option.url, true)

  // 當(dāng)請(qǐng)求為上傳文件時(shí)回調(diào)上傳進(jìn)度
  if (xhr.upload) {
   xhr.upload.onprogress = function (event) {
   if (event.total > 0) {
    event.percent = event.loaded / event.total * 100;
   }
   // 監(jiān)控上傳進(jìn)度回調(diào)
   if (option.onProgress instanceof Function) {
    option.onProgress(event)
   }
   }
  }

  // 自定義頭部
  const headers = option.headers || {}
  for (var item in headers) {
   xhr.setRequestHeader(item, headers[item])
  }

  xhr.send(option.data)
  }
 
 // 測(cè)試接口
  http({
  type: 'POST',
  url: '/test',
  data: JSON.stringify({
   name: 'yolo'
  }),
  onSuccess: function (data) {
   console.log(data)
  },
  onError: function (err) {
   console.log(err)
  }
  })
  document.getElementById('file').onchange = function () {
  var fileList = this.files, formData = new FormData();
  Array.prototype.forEach.call(fileList, function (file) {
   formData.append(file.name, file)
  })
  // 當(dāng)上傳的數(shù)據(jù)為 file 類型時(shí),請(qǐng)求的格式類型自動(dòng)會(huì)變?yōu)?nbsp;multipart/form-data, 如果頭部格式有特定需求,在我的 http 函數(shù)中傳入 headers<Object> 即可,大家可自己查看,我這里沒有什么特殊處理所以就不傳了
  http({
   type: 'POST',
   url: '/upload',
   data: formData,
   onProgress: function (event) {
   console.log(event.percent)
   document.querySelector('.progress span').style.width = event.percent + '%';
   },
   onSuccess: function (data) {
   console.log('上傳成功')
   },
   onError: function (err) {
   alert(err)
   }
  })
  }
 </script>
 </body>
</html>

后端所用的一些東西我放在這

express中間件-multer
express 4.x 文檔

// 后端(node.js) upload.js
var express = require('express');
var path = require('path');
var fs = require('fs');
var app = express();
var bodyParser = require('body-parser'); // 過濾請(qǐng)求頭部相應(yīng)格式的body
var multer = require('multer');
var chalk = require('chalk'); // 只是一個(gè) cli 界面字體顏色包而已
var log = console.log.bind(console);

app.use(express.static('static'));
// 接受 application/json 格式的過濾器
var jsonParser = bodyParser.json()
// 接受 application/x-www-form-urlencoded 格式的過濾器
var urlencodedParser = bodyParser.urlencoded({ extended: false })
// 接受 text/html 格式的過濾器
var textParser = bodyParser.text()

// 自定義 multer 的 diskStorage 的存儲(chǔ)目錄與文件名
var storage = multer.diskStorage({
 destination: function (req, file, cb) {
 cb(null, 'view')
 },
 filename: function (req, file, cb) {
 cb(null, file.fieldname)
 }
})

var upload = multer({ storage: storage })

// 頁面渲染
app.get('/', function (req, res) {
 res.sendFile(path.join(__dirname, 'view/upload.html'));
})

app.post('/test', textParser, jsonParser, function (req, res) {
 log(req.body);
 var httpInfo = http.address();
 res.send({
 host: httpInfo.address,
 port: httpInfo.port
 })
})

// 對(duì)應(yīng)前端的上傳接口 http://127.0.0.1:3000/upload, upload.any() 過濾時(shí)不對(duì)文件列表格式做任何特殊處理
app.post('/upload', upload.any(), function (req, res) {
 log(req.files)
 res.send({message: '上傳成功'})
})

// 監(jiān)控 web 服務(wù)
var http = app.listen(3000, '127.0.0.1', function () {
 var httpInfo = http.address();
 log(`創(chuàng)建服務(wù)${chalk.green(httpInfo.address)}:${chalk.yellow(httpInfo.port)}成功`)
})

關(guān)于使用node.js怎么實(shí)現(xiàn)多文件上傳問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

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

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

AI