使用NodeJS和BusBoy上传文件

时间:2017-05-04 15:48:06

标签: node.js busboy

我正在使用NodeJS上传文件。我的要求是将流读入变量,以便将其存储到AWS SQS中。我不想将文件存储在磁盘上。这可能吗?我只需要将上传的文件转换为流。我使用的代码是(upload.js):

var http = require('http');
var Busboy = require('busboy');

module.exports.UploadImage = function (req, res, next) {

    var busboy = new Busboy({ headers: req.headers });

    // Listen for event when Busboy finds a file to stream.
    busboy.on('file', function (fieldname, file, filename, encoding, mimetype) {

        // We are streaming! Handle chunks
        file.on('data', function (data) {
                // Here we can act on the data chunks streamed.
        });

        // Completed streaming the file.
        file.on('end', function (stream) {
            //Here I need to get the stream to send to SQS
        });
    });

    // Listen for event when Busboy finds a non-file field.
    busboy.on('field', function (fieldname, val) {
            // Do something with non-file field.
    });

    // Listen for event when Busboy is finished parsing the form.
    busboy.on('finish', function () {
        res.statusCode = 200;
        res.end();
    });

    // Pipe the HTTP Request into Busboy.
    req.pipe(busboy);
};

如何获取上传的流?

3 个答案:

答案 0 :(得分:1)

在busboy'file'事件中,你得到一个名为'file'的参数,这是一个流,所以你可以管它。

例如

busboy.on('file', function (fieldname, file, filename, encoding, mimetype) { 
    file.pipe(streamToSQS)
}

答案 1 :(得分:1)

我希望这会对你有帮助。

busboy.on('file', function (fieldname, file, filename, encoding, mimetype) {
    var filename = "filename";
    s3Helper.pdfUploadToS3(file, filename);
  }
busboy.on('finish', function () {
        res.status(200).json({ 'message': "File uploaded successfully." });
    });
    req.pipe(busboy);

答案 2 :(得分:0)

尽管当前和现有参数实际上可以将流(文件)发送给可以接收该流的对象,但实际的块是在您实现的文件回调方法中接收的。

从文档中:(https://www.npmjs.com/package/busboy

file.on('data', function(data) {
   // data.length bytes seems to indicate a chunk
   console.log('File [' + fieldname + '] got ' + data.length + ' bytes');
});
      
   
file.on('end', function() {
  console.log('File [' + fieldname + '] Finished');
});


更新:

找到了构造函数docs,第二个参数是可读流。

  

file(<字符串>字段名,流,<字符串>文件名,<字符串> transferEncoding,<字符串> mimeType)-为找到的每个新文件格式字段发出。 transferEncoding包含文件流的“ Content-Transfer-Encoding”值。 mimeType包含文件流的“ Content-Type”值。