我有一个用于共享照片的Web应用程序。
现在,我有一条应该从以下数组返回所有用户照片的路由。
路线:
router.get('/getphotos',function(req, res){
var reqPhotos = [];
console.log( "\n" + req.body.username + "\n");
try{
for(x =0; x < req.body.following.length; x++){
reqPhotos.push({username: req.body.following[x].username});
}
}
catch(err){
console.log(err);
}
Photo.find({username: reqPhotos}).exec(function(err, allPhotos){
if(err){console.log(err);}
else{
res.json(allPhotos);
}
});
});
我发现req.body.following是未定义的。这就是我使用angular调用它的方式:
$scope.getPhotos = function(){
if($scope.identification){
flng = angular.copy($scope.identification.following);
flng.push($scope.identification.username);
var data = {username: $scope.identification.username, token: $scope.identification.token, following: flng}
//IDENTIFICATION HAS ALL THE INFO.
$http.get('/users/getphotos', data).success(function(response){
$scope.photos = response;
});
}
}
为什么会发生这种情况以及如何解决?
谢谢!
最佳答案
不确定服务器端,但是我在 Angular 代码中看到两个问题。进行HTTP GET
请求时,您无法传递正文。尝试通过url传递任何必要的数据。
同样,返回的实际数据将在response.data
中。做这样的事情:
var urlData = ""; //add any url data here, by converting 'data' into url params
$http.get('/users/getphotos/' + urlData).then(function(response){
$scope.photos = response.data;
});
要构造urlData,请看this问题。
当然,您将必须调整服务器,以便它从url而不是正文读取数据。
关于javascript - NodeJS GET请求不适用于AngularJS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36746275/