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.

Change detection not registering data changes

I have an html structure with a component inside a component (forgot the proper word for it). working basicly like …

angular angular-http
How to propagate errors through catchError() properly?

I wrote a function that is pipe-able: HandleHttpBasicError<T>() { return ((source:Observable<T>) => { return source.…

rxjs angular-http rxjs6
How to read JSON error response from $http if responseType is arraybuffer

I load some binary data using $http.post(url, data, { responseType: "arraybuffer" }).success( function (data) { /* */ }); In case of an error, …

javascript angularjs angular-http
I want to convert a angular2 observable to a class

I am new in angular2 and I broke spend a lot of time to find a solution, but I didn't. …

angular typescript angular-http
AngularJS: Performing $http request inside custom service and returning data

I have defined a custom http service in angular that looks like this: angular.module('myApp') .factory('myhttpserv', function ($http) { …

javascript angularjs angularjs-service angular-http
binding data from $http.get() request into ng-repeat

I'm getting fine my JSON data from a server, but the problem comes when trying to list it at my …

angularjs angularjs-ng-repeat angular-http
angularjs $http.get to get json not working in the service layer

I am developing an angularjs app as a part of my angularjs learning. I have controllers and from there I …

angularjs angularjs-service angular-http
Requesting Example for angular.js $http (or $resource) POST and transformRequest as a service

Using angular 1.1.5 and needing to pass urlencoded data to the backend. I've gotten this to work with solution from here: …

post angularjs-service angular-resource angular-http
Angular2. Map http response to concrete object instance

Сommon approach to process http response is like that: return this._http.get(url) .map((res: Response) => res.json()); …

json angular rxjs angular-http
AngularJS - Cannot read response headers from $http

My http response contains the headers Authentication (as mentioned here: Authentication:76efbc0946773b62c93e952b502a47acd898200f6f80…

angularjs http-headers angular-http