0

<input type="file" class="smart-file" name="images[]" data-btn-class="btn-primary" data-field-type="bootstrap-file-filed" multiple>

`router.post('/introcpn',function(req,res){ var form = new formidable.IncomingForm(); form.parse(req, function (err, fields, file) { if(err) throw err;` ` console.log(file.images) }) })

`

4

1 回答 1

1

您必须在 node_module/formidable/incoming_form.js 中手动添加代码:

https://github.com/node-formidable/formidable/pull/380/files

这个不在master里。它将允许您获取值名称数组

于 2020-07-16T14:34:22.603 回答