我试图通过angular $ http传递一个帖子请求2个参数
在一些controller.js(传递正确的数据)中编码这个
$http
.post('/users', {
user_name: sessionInfo.get().name,
room_name: sessionInfo.get().room
})
.success(function(data) {
})
.error(function(data) {
});
服务器内部的代码。 JS
//get the body of req
app.post('/users', function(req, res){
console.log("the body of the post request is---->"+req.body);
});
但是控制台日志打印未定义。
为什么呢?我做错了什么?