HttpClientModule
configures the dependency injector for HttpClient
with supporting services for XSRF.
In this example, we’ll see how to import HttpclientModule
in Angular and use HttpClient
to send an http Ajax GET
request to JSON REST API servers.
What is HttpClient and How It Relates to Ajax?
HttpClient
is a service for handling HTTP requests which is built on top of XMLHttpRequest
which is the legacy API for doing Ajax.
What about Ajax?
Ajax stands for Asynchronous JavaScript and XML and is a technique for requesting data from the server without doing a full page refresh, and using the XML result to re-render the related part of the page.
In the modern web, Ajax refers to any asynchronous request sent to a server from client-side JavaScript. Typically, the response is JSON, or HTML fragments instead of XML.
How to Use HttpClient?
It can be injected in other services and components. It exports methods for making HTTP Ajax requests such as get()
, post()
, put()
, and delete()
and return http responses with various types such as json, text and blob.
HttpClient
provides many benefits such as testability, typed request and response objects, request and response interception, Observable APIs, and streamlined error handling.
The methods of HttpClient
are based on RxJS observables, so we need to be aware of these points when using them:
- You need to subscribe to the observable returned from the method to actually send the http request to the server.
- If you subscribe multiple times to the returned observable, multiple HTTP requests will be sent to the server.
- The returned observable is a single-value stream which means it will emit only one value and complete.
Step 1 - Creating an Angular 9 Project
If you are new to these quick how-to posts, you need to install Angular CLI and scaffold a new project
Step 2 - Importing HttpClientModule?
Before you can use HttpClient
in your Angular 9 application, you need to import HttpClientModule
.
Open the src/app/app.module.ts file and import HttpClientModule
from @angular/common/http:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
Next, you need to add it HttpClientModule
as follows:
@NgModule({
imports: [
BrowserModule,
HttpClientModule,
],
declarations: [
AppComponent,
],
bootstrap: [ AppComponent ]
})
export class AppModule {}
Step 3 - Using Angular HttpClient to Send Ajax GET Requests
After you imported HttpClientModule
, you can send http requests using the HttpClient
service which you can inject in any service or component.
Open the src/app/app.component.ts file and start by importing HttpClient
as follows:
import { HttpClient } from '@angular/common/http';
Next, inject HttpClient
via the constructor of the component as follows:
constructor(public httpClient: HttpClient){}
Next, define the following example method:
sendGetRequest(){
this.httpClient.get('https://jsonplaceholder.typicode.com/users').subscribe((res)=>{
console.log(res);
});
}
This method sends a GET
request to the server endpoint and subscribes to the returned observable.
Next, open the src/app/app.component.ts file and add a button to call the sendGetRequest()
method as follows:
<button (click)="sendGetRequest()">GET Users</button>
References
Conclusion
In this quick how-to post, we have seen how to import HttpClientModule
in Angular and used the HttpClient
service to send an example http Ajax GET request to a REST API server server.