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

问题描述 投票:0回答:1

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

node.js express formidable multiple-file-upload
1个回答
0
投票

我假设你指的是: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将是一个文件/图像阵列。

© www.soinside.com 2019 - 2024. All rights reserved.