如何使用强大的模块在node js中上传多张图片
How to upload multiple images in node js using the formidable module
我正在处理一个处理文件上传的项目,已经能够在我的数据库中上传单张图片,但现在我想使用强大的节点 js 模块上传多张图片
我假设您指的是: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
将是 files/images 的数组。
我正在处理一个处理文件上传的项目,已经能够在我的数据库中上传单张图片,但现在我想使用强大的节点 js 模块上传多张图片
我假设您指的是: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
将是 files/images 的数组。