溫馨提示×

溫馨提示×

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

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

如何在Node.js中獲取文件上傳進(jìn)度

發(fā)布時間:2021-02-05 17:22:25 來源:億速云 閱讀:482 作者:Leah 欄目:web開發(fā)

如何在Node.js中獲取文件上傳進(jìn)度?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

利用progress-stream獲取文件上傳進(jìn)度

如果只是想在服務(wù)端獲取上傳進(jìn)度,可以試下如下代碼。注意,這個模塊跟Express、multer并不是強(qiáng)綁定關(guān)系,可以獨(dú)立使用。

var fs = require('fs');
var express = require('express');
var multer = require('multer');
var progressStream = require('progress-stream');
var app = express();
var upload = multer({ dest: 'upload/' });
app.post('/upload', function (req, res, next) {
  // 創(chuàng)建progress stream的實(shí)例
  var progress = progressStream({length: '0'}); // 注意這里 length 設(shè)置為 '0'
  req.pipe(progress);
  progress.headers = req.headers;
  // 獲取上傳文件的真實(shí)長度(針對 multipart)
  progress.on('length', function nowIKnowMyLength (actualLength) {
    console.log('actualLength: %s', actualLength);
    progress.setLength(actualLength);
  });
  // 獲取上傳進(jìn)度
  progress.on('progress', function (obj) {    
    console.log('progress: %s', obj.percentage);
  });
  // 實(shí)際上傳文件
  upload.single('logo')(progress, res, next);
});
app.post('/upload', function (req, res, next) {
  res.send({ret_code: '0'});
});
app.get('/form', function(req, res, next){
  var form = fs.readFileSync('./form.html', {encoding: 'utf8'});
  res.send(form);
});
app.listen(3000);

如何獲取上傳文件的真實(shí)大小

multipart類型,需要監(jiān)聽length來獲取文件真實(shí)大小。(官方文檔里是通過conviction事件,其實(shí)是有問題的)

// 獲取上傳文件的真實(shí)長度(針對 multipart)
progress.on('length', function nowIKnowMyLength (actualLength) {
  console.log('actualLength: %s', actualLength);
  progress.setLength(actualLength);
});

3、關(guān)于progress-stream獲取真實(shí)文件大小的bug?

針對multipart文件上傳,progress-stream 實(shí)例子初始化時,參數(shù)length需要傳遞非數(shù)值類型,不然你獲取到的進(jìn)度要一直是0,最后就直接跳到100。

至于為什么會這樣,應(yīng)該是 progress-steram 模塊的bug,看下模塊的源碼。當(dāng)length是number類型時,代碼直接跳過,因此你length一直被認(rèn)為是0。

tr.on('pipe', function(stream) {
  if (typeof length === 'number') return;
  // Support http module
  if (stream.readable && !stream.writable && stream.headers) {
    return onlength(parseInt(stream.headers['content-length'] || 0));
  }
  // Support streams with a length property
  if (typeof stream.length === 'number') {
    return onlength(stream.length);
  }
  // Support request module
  stream.on('response', function(res) {
    if (!res || !res.headers) return;
    if (res.headers['content-encoding'] === 'gzip') return;
    if (res.headers['content-length']) {
      return onlength(parseInt(res.headers['content-length']));
    }
  });
});

關(guān)于如何在Node.js中獲取文件上傳進(jìn)度問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

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

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

AI