我正在处理一个文件上传项目,已经能够在数据库中上传单个图像,但是现在我想使用强大的js节点模块上传多个图像
答案 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
将是文件/图像的数组。