前端的代码var a = '{\"data\":{\"name\":"张三",\"age\":25}}';
$.ajax({ type: "post",
url: "/new",
dataType: "json",
data: a,
success: function (data) {
alert("success");
},
error: function (err) {
alert("error : " + err);
}
});后端的代码router.post('/', function (req, res) {
var a = req.body;
console.log(a.data.name);
});项目是用express生成的。所以有require("body-parser")可是当我想获取前台传过来的data中的name的时候就不行了。直接报错。请问是什么问题。
添加回答
举报
0/150
提交
取消