I am sending a data along with $http.get request like below to node server.
$http.get("/deletebookData",{pathsrc : "a"}).success(function (result) {});
on node js i am not able to receive the {pathsrc : "a"} sent in get request.
app.get("/deletebookData", function (req, response) {
console.log(req.body);
});
only empty json is printed in console