Top "Angular-http" questions

AngularJS tag for $http service is a core Angular service that facilitates communication with the remote HTTP servers via the browser's XMLHttpRequest object or via JSONP.

Angular sending token with get (and other) requests

For some reason, the internet is devoid of examples on how to do this in Angular 4 (which uses TypeScript, which …

angular angular-http
Angular $http.get to localhost, always returns 404. 200 in browser

I can't create a successful get request in Angular 1.2.13. var getProgress = function() { var promise = $http({method: 'GET', url: 'http://localhost:8080/…

json angularjs angular-http
Overload request headers and params with HttpClient get

In HttpClientModule, is there a method to pass headers and params to get request. import { HttpHeaders, HttpParams, HttpClient } from @angular/…

angular http-get angular-http angular-http-interceptors angular-httpclient
how to sent array data as formdata angular 4

I tried to post an array of data is not sending to server: webservice: deleteCategory() { return this.http.post('http://…

angular http-post angular-http
Can't specify headers in request in AngularJS

I have 2 parts in my app - Angular frontend and rails server. And because it's different domains, requests doesn't work …

javascript ruby-on-rails angularjs cross-domain angular-http
Best way to provide url to angular $http.get/.post

I am using angular with MVC4. I would like to call a MVC controller method from javascript using $http.get(). …

angularjs asp.net-mvc-4 url relative-path angular-http
$http POST response from service to controller

How to get the response from Service in below case?? Service: app.factory('ajaxService', function($http) { updateTodoDetail: function(postDetail){ $http({ …

angularjs angular-http
Angular alternative $http

In AngularJS for sending a request I use the builtin $http service. What shall I use for sending a request …

javascript ajax angular angular-http
Angular 2 Http – How to Get JSON Data from API with finance_charts_json_callback() callback

I'm trying to get json data from this api: http://chartapi.finance.yahoo.com/instrument/1.0/NFLX/chartdata;type=quote;range=1…

typescript angular angular-http
Caching Data From HttpClient in Angular 4

i have a problem in making my caching more simpler. I think there is a better way to do this. …

angular caching angular-http angular-http-interceptors