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对象与后台进行交互
知识点传送门:https://www.jianshu.com/p/606802e40fd5
原文地址:https://www.cnblogs.com/sangzs/p/8708575.html
时间: 2024-11-13 10:07:53