I have an array of ids that I want to pass to the server. The other answers I have seen online describe how to pass these ids as query parameters in the url. I prefer not to use this method because there may be lots of ids. Here is what I have tried:
AngularJS:
console.log('my ids = ' + JSON.stringify(ids)); // ["482944","335392","482593",...]
var data = $.param({
    ids: ids
});
return $http({
    url: 'controller/method',
    method: "GET",
    data: data,
    headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function (result, status, headers, config) {
    return result;
})
Node.js:
app.get('/controller/method', function(req, res) {
    console.log('my ids = ' + JSON.stringify(req.body.ids)); // undefined
    model.find({
        'id_field': { $in: req.body.ids }
    }, function(err, data){
        console.log('ids from query = ' + JSON.stringify(data)); // undefined
        return res.json(data);
    });
});
Why am I getting undefined on the server side? I suspect it's because of my use of $.params, but I'm not sure.
 
     
     
    