在node.js中通过post方法发送数组数据,如何在控制台上打印我试过这个

时间:2018-05-15 11:56:09

标签: javascript node.js

详细信息:如何仅打印特定值 在通过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[]">

1 个答案:

答案 0 :(得分:2)

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

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