我必须向运行 localhost:3001 的节点服务器发送一个发布请求。我成功完成了请求并在节点服务器中获取了发布数据,但数据格式不正确。
AngularJS:
function MyCtrl1($scope,$http,$location) {
$scope.user = { };
$scope.login = function() {
$http.post("http://localhost:3001/login",
$scope.user,
{'Content-Type': 'application/json'}).success(function(result) {
$scope.resultPost = result;
$location.path('/');
}).error(function() {
console.log("error");
});
};
}
节点:
app.post('/login', function(req,res) {
console.log(JSON.stringify(req.body));
res.end('ok');
});
log : {"{\"username\":\"test\",\"password\":\"pass123\"}":""}
有没有办法在这里获取格式化数据?