中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何在Node.js中獲取文件上傳進度

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

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

利用progress-stream獲取文件上傳進度

如果只是想在服務端獲取上傳進度,可以試下如下代碼。注意,這個模塊跟Express、multer并不是強綁定關系,可以獨立使用。

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) {
  // 創建progress stream的實例
  var progress = progressStream({length: '0'}); // 注意這里 length 設置為 '0'
  req.pipe(progress);
  progress.headers = req.headers;
  // 獲取上傳文件的真實長度(針對 multipart)
  progress.on('length', function nowIKnowMyLength (actualLength) {
    console.log('actualLength: %s', actualLength);
    progress.setLength(actualLength);
  });
  // 獲取上傳進度
  progress.on('progress', function (obj) {    
    console.log('progress: %s', obj.percentage);
  });
  // 實際上傳文件
  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);

如何獲取上傳文件的真實大小

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

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

3、關于progress-stream獲取真實文件大小的bug?

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

至于為什么會這樣,應該是 progress-steram 模塊的bug,看下模塊的源碼。當length是number類型時,代碼直接跳過,因此你length一直被認為是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']));
    }
  });
});

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

子长县| 石河子市| 青浦区| 吴旗县| 汉源县| 贵阳市| 壤塘县| 光泽县| 镇宁| 梁河县| 尉氏县| 枞阳县| 商南县| 蓝山县| 海晏县| 娄底市| 皋兰县| 凭祥市| 秀山| 托克托县| 泌阳县| 桂林市| 璧山县| 吴川市| 宜川县| 威远县| 孝感市| 肇庆市| 屏南县| 饶阳县| 新乐市| 天柱县| 东安县| 东阳市| 安平县| 达州市| 丰城市| 壶关县| 冷水江市| 铁岭市| 叙永县|