详细信息:仅打印特定值
在通过post方法在服务器上发送的数组的控制台上

router.post('/', function(req, res, next) {
    var mj = new Array();
    mj = req.body.equip;
    console.log("this" + req.body.equip[]);
    console.log(mj);
});


我用这个但是没有给结果

 <input type="text" name="equip[]">
 <input type="text" name="equip[]">
 <input type="text" name="equip[]">

最佳答案

我认为以下代码将帮助您打印每个值。

var array=req.body.equip;
array.forEach(function(element) {
    console.log(element);
}, this);

10-07 11:59