详细信息:如何仅打印特定值 在通过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[]">
答案 0 :(得分:2)
我认为下面的代码可以帮助您打印每个值。
var array=req.body.equip;
array.forEach(function(element) {
console.log(element);
}, this);