使用Node.js,Express和Mongoose上传图像


102

多年来,随着事情的变化,请考虑提供更多最新信息的较新答案!

由于许多新的Node.js库很快就变得过时了,无论如何我想问一下使用以下方法上传图像的例子相对较少:

  • Node.js(v0.4.1)
  • 快递(1.0.7)
  • 猫鼬(1.1.0)。

别人如何做?

我发现:node-formidable,但是我是一般上载图像的新手,所以我想学习使用Node.js和Express的一般知识和方法。


12
更新 Express的较新版本具有内置的此功能,请考虑一下在使用“连接表单”之前
user531694 2012年

4
2015 tl; dr-将多部分/表单请求发送到您的服务器,并使用Multer解析它们,因为BodyParser不再解析文件。npm install multer --save然后在您的应用中,您可以使用或req.files.your_file_param_nameaws-sdkfs.writeFile(...)
用户

Answers:


74

我将第一次回答我自己的问题。我从源头直接找到了一个示例。请原谅不良的缩进。我不确定在复制和粘贴时如何正确缩进。该代码直接来自GitHub上的Express multipart/form-data示例

// Expose modules in ./support for demo purposes
require.paths.unshift(__dirname + '/../../support');

/**
 * Module dependencies.
 */

var express = require('../../lib/express')
  , form = require('connect-form');

var app = express.createServer(
  // connect-form (http://github.com/visionmedia/connect-form)
  // middleware uses the formidable middleware to parse urlencoded
  // and multipart form data
  form({ keepExtensions: true })
);

app.get('/', function(req, res){
  res.send('<form method="post" enctype="multipart/form-data">'
    + '<p>Image: <input type="file" name="image" /></p>'
    + '<p><input type="submit" value="Upload" /></p>'
    + '</form>');
});

app.post('/', function(req, res, next){

  // connect-form adds the req.form object
  // we can (optionally) define onComplete, passing
  // the exception (if any) fields parsed, and files parsed
  req.form.complete(function(err, fields, files){
    if (err) {
      next(err);
    } else {
      console.log('\nuploaded %s to %s'
        ,  files.image.filename
        , files.image.path);
      res.redirect('back');
    }
  });

  // We can add listeners for several form
  // events such as "progress"
  req.form.on('progress', function(bytesReceived, bytesExpected){
    var percent = (bytesReceived / bytesExpected * 100) | 0;
    process.stdout.write('Uploading: %' + percent + '\r');
  });
});

app.listen(3000);
console.log('Express app started on port 3000');

3
是的,但是您如何保存文件?
Nick Retallack

1
@NickRetallack保存的文件存储在files.image.path
Robin Duckett

@ robin-duckett,您如何预先指定文件名和路径?
卢克

4
@Luc:您不知道,它已保存到一个临时目录,您可以将其从该目录移到其他地方。
kevmo314 2011年

1
这是您在express中配置上载目录的方式://注意:使用上载目录的绝对路径可以避免子模块中的问题!// app.use(express.bodyParser({uploadDir:uploadDir}));;
Risadinha 2012年

47

由于您使用的是Express,因此只需添加bodyParser:

app.use(express.bodyParser());

那么您的路线将自动访问req.files中的上载文件:

app.post('/todo/create', function (req, res) {
    // TODO: move and rename the file using req.files.path & .name)
    res.send(console.dir(req.files));  // DEBUG: display available fields
});

如果这样命名输入控件“ todo”(在Jade中):

form(action="/todo/create", method="POST", enctype="multipart/form-data")
    input(type='file', name='todo')
    button(type='submit') New

然后,当您在“ files.todo”中获得路径和原始文件名时,已准备好上传的文件:

  • req.files.todo.path,以及
  • req.files.todo.name

其他有用的req.files属性:

  • 大小(以字节为单位)
  • 类型(例如“ image / png”)
  • lastModifiedate
  • _writeStream.encoding(例如“ binary”)

我从未听说过这种方式,因此我将继续说这些家伙最了解developer.mozilla.org/en-US/docs/JavaScript/Guide / ...所以我想我们俩都错了;)
srquinn

bodyParser是不安全的,至少据此是这样:andrewkelley.me/post/do-not-use-bodyparser-with-express-js.html乔恩J的答案对我有用。
马特·布朗

“不安全”仅表示临时文件已创建,因此“攻击”可能会用临时文件填满服务器的磁盘空间。这不是安全漏洞,更是一个健壮性问题。
布伦特浮士德

19

您可以在主应用程序文件的配置块中配置连接正文解析器中间件:

    /** Form Handling */
    app.use(express.bodyParser({
        uploadDir: '/tmp/uploads',
        keepExtensions: true
    }))
    app.use(express.limit('5mb'));

我想这实际上是处理上载的最佳方法。如果您要保留文件,则只需将其删除即可,而不是将其复制到单独的位置。谢谢。
东僧和尚

2
@AksharPrabhuDesai是和不是。假设您有照片上传/裁剪工具。如果允许用户直接上载到公用文件夹,则存在严重的安全漏洞。在这种情况下,最好先上载到tmp文件夹,然后在确认该文件不是Trojan后将其移入公用文件夹。
srquinn

似乎不再受支持。看起来是一个不错的解决方案。
Blaze 2015年

14

瞧,您能做的最好的事情就是将映像上传到磁盘并将URL保存在MongoDB中。再次获取图像时请休息。只需指定URL,您将得到一个图像。上传代码如下。

app.post('/upload', function(req, res) {
    // Get the temporary location of the file
    var tmp_path = req.files.thumbnail.path;
    // Set where the file should actually exists - in this case it is in the "images" directory.
    target_path = '/tmp/' + req.files.thumbnail.name;
    // Move the file from the temporary location to the intended location
    fs.rename(tmp_path, target_path, function(err) {
        if (err)
            throw err;
        // Delete the temporary file, so that the explicitly set temporary upload dir does not get filled with unwanted files.
        fs.unlink(tmp_path, function() {
            if (err)
                throw err;
            //
        });
    });
});

现在,将目标路径保存在您的MongoDB数据库中。

同样,在检索图像时,只需从MongoDB数据库中提取URL,然后在此方法上使用它。

fs.readFile(target_path, "binary", function(error, file) {
    if(error) {
        res.writeHead(500, {"Content-Type": "text/plain"});
        res.write(error + "\n");
        res.end();
    }
    else {
        res.writeHead(200, {"Content-Type": "image/png"});
        res.write(file, "binary");
    }
});

9

试试这个代码,它将有所帮助。

app.get('/photos/new', function(req, res){
  res.send('<form method="post" enctype="multipart/form-data">'
    + '<p>Data: <input type="filename" name="filename" /></p>'
    + '<p>file: <input type="file" name="file" /></p>'
    + '<p><input type="submit" value="Upload" /></p>'
    + '</form>');
});


 app.post('/photos/new', function(req, res) {
  req.form.complete(function(err, fields, files) {
    if(err) {
      next(err);
    } else {
      ins = fs.createReadStream(files.photo.path);
      ous = fs.createWriteStream(__dirname + '/directory were u want to store image/' + files.photo.filename);
      util.pump(ins, ous, function(err) {
        if(err) {
          next(err);
        } else {
          res.redirect('/photos');
        }
      });
      //console.log('\nUploaded %s to %s', files.photo.filename, files.photo.path);
      //res.send('Uploaded ' + files.photo.filename + ' to ' + files.photo.path);
    }
  });
});

if (!module.parent) {
  app.listen(8000);
  console.log("Express server listening on port %d, log on to http://127.0.0.1:8000", app.address().port);
}

util.pump(ins, ous)已贬值,现在就可以完成ins.pipe(ous);。但这会删除旧位置上的图像文件吗?
艾米尔(Emiel Vandenbussche)

8

您还可以使用以下命令设置保存文件的路径。

req.form.uploadDir = "<path>";


2

同样,如果您不想使用bodyParser,可以执行以下操作:

var express = require('express');
var http = require('http');
var app = express();

app.use(express.static('./public'));


app.configure(function(){
    app.use(express.methodOverride());
    app.use(express.multipart({
        uploadDir: './uploads',
        keepExtensions: true
    }));
});


app.use(app.router);

app.get('/upload', function(req, res){
    // Render page with upload form
    res.render('upload');
});

app.post('/upload', function(req, res){
    // Returns json of uploaded file
    res.json(req.files);
});

http.createServer(app).listen(3000, function() {
    console.log('App started');
});

2

对于Express 3.0,如果要使用强大事件,则必须删除多部分中间件,以便可以创建它的新实例。

去做这个:

app.use(express.bodyParser());

可以写成:

app.use(express.json());
app.use(express.urlencoded());
app.use(express.multipart()); // Remove this line

现在创建表单对象:

exports.upload = function(req, res) {
    var form = new formidable.IncomingForm;
    form.keepExtensions = true;
    form.uploadDir = 'tmp/';

    form.parse(req, function(err, fields, files){
        if (err) return res.end('You found error');
        // Do something with files.image etc
        console.log(files.image);
    });

    form.on('progress', function(bytesReceived, bytesExpected) {
        console.log(bytesReceived + ' ' + bytesExpected);
    });

    form.on('error', function(err) {
        res.writeHead(400, {'content-type': 'text/plain'}); // 400: Bad Request
        res.end('error:\n\n'+util.inspect(err));
    });
    res.end('Done');
    return;
};

我还将此内容发布在我的博客上,“ 在Express 3.0中获取强大的表单对象”


您的建议有误导性,bodyParser基本上会解析该表单。并接受强大的配置变量。
Marius 2013年

1
@timoxley这仅是示例
Risto Novik

1

我知道原始问题与特定版本有关,但它也涉及“最新”问题-由于Expressjs bodyParser和connect-form@ JohnAllen的帖子不再相关

这演示了易于使用的内置bodyParser():

 /**
 * Module dependencies.
 */

var express = require('express')

var app = express()
app.use(express.bodyParser({ keepExtensions: true, uploadDir: '/home/svn/rest-api/uploaded' }))

app.get('/', function(req, res){
  res.send('<form method="post" enctype="multipart/form-data">'
    + '<p>Image: <input type="file" name="image" /></p>'
    + '<p><input type="submit" value="Upload" /></p>'
    + '</form>');
});

app.post('/', function(req, res, next){

    res.send('Uploaded: ' + req.files.image.name)
    return next()

});

app.listen(3000);
console.log('Express app started on port 3000');

0

我有多种上传文件的方法:

Nodejs:

router.post('/upload', function(req , res) {

var multiparty = require('multiparty');
var form = new multiparty.Form();
var fs = require('fs');

form.parse(req, function(err, fields, files) {  
    var imgArray = files.imatges;


    for (var i = 0; i < imgArray.length; i++) {
        var newPath = './public/uploads/'+fields.imgName+'/';
        var singleImg = imgArray[i];
        newPath+= singleImg.originalFilename;
        readAndWriteFile(singleImg, newPath);           
    }
    res.send("File uploaded to: " + newPath);

});

function readAndWriteFile(singleImg, newPath) {

        fs.readFile(singleImg.path , function(err,data) {
            fs.writeFile(newPath,data, function(err) {
                if (err) console.log('ERRRRRR!! :'+err);
                console.log('Fitxer: '+singleImg.originalFilename +' - '+ newPath);
            })
        })
}
})

确保您的表单具有enctype =“ multipart / form-data”

我希望这能帮到您;)


0

这是一种使用强大软件包上载图像的方法,在Express的更高版本中,建议在bodyParser上使用此软件包。这还包括即时调整图像大小的功能:

在我的网站上:使用Node.js和Express快速上传和调整图像大小

这是要点:

var express = require("express"),
app = express(),
formidable = require('formidable'),
util = require('util')
fs   = require('fs-extra'),
qt   = require('quickthumb');

// Use quickthumb
app.use(qt.static(__dirname + '/'));

app.post('/upload', function (req, res){
  var form = new formidable.IncomingForm();
  form.parse(req, function(err, fields, files) {
    res.writeHead(200, {'content-type': 'text/plain'});
    res.write('received upload:\n\n');
    res.end(util.inspect({fields: fields, files: files}));
  });

  form.on('end', function(fields, files) {
    /* Temporary location of our uploaded file */
    var temp_path = this.openedFiles[0].path;
    /* The file name of the uploaded file */
    var file_name = this.openedFiles[0].name;
    /* Location where we want to copy the uploaded file */
    var new_location = 'uploads/';

    fs.copy(temp_path, new_location + file_name, function(err) {  
      if (err) {
        console.error(err);
      } else {
        console.log("success!")
      }
    });
  });
});

// Show the upload form 
app.get('/', function (req, res){
  res.writeHead(200, {'Content-Type': 'text/html' });
  /* Display the file upload form. */
  form = '<form action="/upload" enctype="multipart/form-data" method="post">'+ '<input name="title" type="text" />
  '+ '<input multiple="multiple" name="upload" type="file" />
  '+ '<input type="submit" value="Upload" />'+ '</form>';
  res.end(form); 
}); 
app.listen(8080);

注意:这需要Image Magick来快速调整拇指大小。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.