我最近开始学习MEAN堆栈,但遇到了问题。我试图从angular发送一个$ http.get请求到我的本地服务器,但请求体是未定义的。奇怪的是,我的帖子中没有未定义。我知道问题可能是身体解析器,我花了几个小时试图找出它无济于事。谢谢你的帮助!
这是我的快递代码:
var express = require('express');
var mongoose= require('mongoose');
var bodyParser=require('body-parser');
var http=require('http');
var db=mongoose.connect('mongodb://localhost:27017/checkIt');
var server = express();
var Schema= mongoose.Schema;
server.use(bodyParser.urlencoded({
extended: true
}));
server.use(bodyParser.json());
server.use(express.static(__dirname));
var UserSchema = new Schema({
username: String,
password: String
});
var User=mongoose.model('User',UserSchema);
server.post("/checkIt/users",function(req,res){
var newUser = new User({
username: req.body.username,
password: req.body.password
});
newUser.save(function(err,doc){
res.send("inserted");
});
});
server.get("/checkIt/users",function(req,res){
console.log(req.body);
var userToCheck= new User({
username:req.body.username,
password:req.body.password
});
User.findOne({username: userToCheck.username, password: userToCheck.password},function(err,obj){
res.send(obj);
});
});
server.listen(3000);
这是我的loginController,其中有我的get请求:
angular.module('app')
.controller('loginController',['$scope','$location', '$http',function($scope,$location,$http){
$scope.checkIfUser = function(){
var user={
username:$scope.username,
password:$scope.password
};
$http.get("http://localhost:3000/checkIt/users",user)
.success(function(response){
if(response===""){
console.log("User does not exist");
}
else goToHome();
});
};
var goToHome = function(){
$location.path('/Home')
}
}]);
最后,我不知道这是否有帮助,但这是我执行$ http.post请求的代码片段
$scope.signup = function(){
createUser();
console.log(user);
$http.post("http://localhost:3000/checkIt/users",user)
.success(function(response){
console.log(response);
});
};
答案 0 :(得分:1)
GET
不会成为一个身体!这就是生活的方式。没有GET
的正文。现在来解决问题。您希望在服务器端使用req.query
来访问值。
在Angular方面,您需要对代码稍作更改(在网址中发送密码是件坏事):
$http.get('http://localhost:3000/checkIt/users', {
params: { username: $scope.username, password:$scope.password }
}).success(... same as before);
答案 1 :(得分:0)
请求正文未定义只是因为您无法通过GET
请求传递参数,您可能希望更改路由名称并改为使用POST
请求。
顺便说一下,在UserService
中移动API请求并将其注入控制器可能会更清晰,因为最终需要在其他地方重新使用它们。