I use express.js on my server. From my client I try to:
$http.post("url/send", angular.toJson(
{
uploads: uploads,
desc: desc
}
));
On the server I want to read this data:
send function(req, res, next){
};
How can I extract the posted json string from the req object?