如何使用强大的模块在节点js中上传多张图片

时间:2019-03-28 13:47:25

标签: node.js express formidable multiple-file-upload

我正在处理一个文件上传项目,已经能够在数据库中上传单个图像,但是现在我想使用强大的js节点模块上传多个图像

1 个答案:

答案 0 :(得分:0)

我假设您是指:https://github.com/felixge/node-formidable

如果是这样,则在其自述文件中,它们具有以下配置:

form.multiples = false;

If this option is enabled, when you call form.parse, the files argument will contain arrays of files for inputs which submit multiple files using the HTML5 multiple attribute.

req.files将是文件/图像的数组。

相关问题