router.post(‘/‘, function(req, res) { console.log(req.body); console.log(req.body.name); console.log(req.body.tel); res.send("ok"); }); // 下面是log {} undefined undefined
原因:因为post的是一个raw的字符串,Express默认只支持json与x-www-form-urlencoded
解决方法:使用json对象与后台进行交互