Angular HttpClient is the new HTTP client of Angular since version 4.3 from the @angular/common/http package.
Can I use promise within HttpInterceptor? For example: export class AuthInterceptor implements HttpInterceptor{ this.someService.someFunction() .then((data)=>{ //do …
angular rxjs es6-promise angular-httpclient angular-httpclient-interceptorsHow do I get the service code? I try the code below, but it does not log anything. In a …
angular angular-httpclientHow to utilize Angular HTTPClient's progress event to show progress in percentage of Get request which does not necessarily a …
angular rxjs angular-httpclientAs the title states, I need to return multiple observables or maybe results. The goal is basically to load let's …
angular angular-routing angular-http angular-httpclientI Have an object which has a Date type property on client side. When I try to send object via …
angular date angular-httpclientHow can I get status code of response POST request? My service method return: return this.httpClient.post(url, body, {…
angular angular-httpclientI've been having some trouble getting file download working in my application. To download the file I made a new …
angular api angular-httpclient angular7I'm using Angular and rxjs 5.x.x . For each http request I must log the response in a centralized place …
angular logging rxjs error-logging angular-httpclientHow to detect an error by timeout operator? I would like to show an alert or something like that just …
angular rxjs timeout angular2-observables angular-httpclientAngular 6 using HttpClient. No interceptors implemented for now. I have an admin service where I'm doing a http call to …
angular rxjs observable angular-httpclient