I have a function which does a http POST request. The code is specified below. This works fine.
$http({
url: user.update_path,
method: "POST",
data: {user_id: user.id, draft: true}
});
I have another function for http GET and I want to send data to that request. But I don't have that option in get.
$http({
url: user.details_path,
method: "GET",
data: {user_id: user.id}
});
The syntax for http.get
is
get(url, config)
Can someone help me with this?
An HTTP GET request can't contain data to be posted to the server. However, you can add a query string to the request.
angular.http provides an option for it called
params
.See: http://docs.angularjs.org/api/ng.$http#get and https://docs.angularjs.org/api/ng/service/$http#usage (shows the
params
param)Starting from AngularJS v1.4.8, you can use
get(url, config)
as follows:Solution for those who are interested in sending params and headers in GET request
Complete service example will look like this
You can pass params directly to
$http.get()
The following works fineHere's a complete example of an HTTP GET request with parameters using angular.js in ASP.NET MVC:
CONTROLLER:
VIEW:
You can even simply add the parameters to the end of the url:
Paired with script.php:
Resulting in the following javascript alert: