首页 > Web开发 > 详细

nodejs使用formidable上传多个文件

时间:2016-07-20 23:00:18      阅读:372      评论:0      收藏:0      [点我收藏+]

首先,在html页面中,表单上传文件的控件需要加上multiple选项,或者multiple="multiple".

然后,在nodejs程序中处理post数据的路路由中使用formidable格式化表单

var form = new formidable.IncomingForm();
    form.uploadDir = configs.productPath;
    form.keepExtensions = true;
    var files = [];

    form.on(‘file‘, function (filed, file) {
        files.push([filed, file]);
    });//whenever a file is received, this will add the file info to the array

    form.parse(req, function (err, fields) {
        assert.equal(err, null);
//traverse the files here
        }
    });

通过form.on语句将所有上传的文件加入到files里。

然后,使用array.foreach遍历files中的元素。

nodejs使用formidable上传多个文件

原文:http://www.cnblogs.com/netaddi/p/5689831.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!