我正在处理一个处理文件上传的项目,已经能够在我的数据库中上传单个图像,但现在我想使用强大的节点js模块上传多个图像
我假设你指的是:https://github.com/felixge/node-formidable?
如果是这样,在他们的README中他们有以下配置:
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
将是一个文件/图像阵列。