05
DecServices in Angular is meant for specifically making the call to RestFul API and getting the data and passing data to all component whichever component subscribe to it. Moreover, it gives us the benefit of code reusability and data sharing across components.
Goals
How to create a basic service in Angular
How to subscribe to the service response.
How to handle errors in service.
Specifications
In this tutorial, we will create a basic angular application and try to use the service to get data and pass the data component.
Why Services
The component is meant for providing the data to view, when I say view means providing the data to respective HTML whatever is required, it is not a good practice to make an API call directly from the component. Services give the benefit of separation of concerns and you can say single responsibility principle as well.
Let's see services in action
Create an angular project: go to VS code integrated terminal
Run - ng new ServiesTest
Run this newly created project by using the below command
ng serve
Once you run this command you must see the below page at
http://localhost:4200/
Create a service by using the below command
ng g s DateTime
Now go to the DateTimeService.ts file you will find below the code
import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class DateTimeService { constructor() { } }
If you notice it has the @Injectable decorator similar to the @Component decorator which we use to have in an angular component. @Injectable means it can participate in dependency injection, those who don't know dependency injection I will explain it in my next article as it is not the topic of this discussion, it needs further explanation, so will keep that in a separate article.@Injectable accepts metadata objects. So here you can providedIn value as root, which means this service can be injected in any of the classes across the project.
Now let us write the code to consume the actual service. So here I am trying to call a real-time RestFul API which is from
https://www.jsontest.com/
We will call an API located at :
http://date.jsontest.com
So here is the code for the same :import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class DateTimeService { public apiURL:string="http://date.jsontest.com"; constructor() { } getDateTime () { return this.httpClient.get(this.apiURL) .pipe( map(res => res), catchError( this.errorHandler) ); } }
So my code is complaining about httpClient, map, catchError, and errorHandler.
So let us do the import for these complaints.
import { HttpClient } from '@angular/common/http';
For httpClient and inject in the constructor like below :
constructor(private httpClient:HttpClient) { } import { map, catchError } from 'rxjs/operators'; For map, catchError Now it's time to fix errorHandler. So write one method like below: errorHandler(error: Response) { console.log(error); return throwError(error); }
Lastly, do this import :
import {throwError} from 'rxjs'
So finally service code looks like this :
import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import {throwError} from 'rxjs' import { map, catchError } from 'rxjs/operators'; @Injectable({ providedIn: 'root' }) export class DateTimeService { public apiURL:string="http://date.jsontest.com"; constructor(private httpClient:HttpClient) { } getDateTime () { return this.httpClient.get(this.apiURL) .pipe( map(res => res), catchError( this.errorHandler) ); } errorHandler(error: Response) { console.log(error); return throwError(error); } }
If any error while calling the service it will be logged in the console and an error will be thrown to the subscriber. Now is the time to consume this service from the component. So here you go.
Go to app.module.ts and importimport { HttpClient,HttpClientModule } from '@angular/common/http';
Use this import in an import array like this
imports: [ BrowserModule,HttpClientModule ],
First of all, you need to inject this service into components like this :
constructor(private dateTimeService:DateTimeService){}
So here now by using this dateTimeService injector we will call the service method like this
ngOnInit() { this.dateTimeService.getDateTime() .subscribe((result) => { this.globalResponse = result; }, error => { //This is error part console.log(error.message); }, () => { // This is Success part console.log("Date time fetched sucssesfully."); console.log(this.globalResponse); } ) }
Here we are calling the getDateTime method from the service, which will call
http://date.jsontest.com
and return us output in the below format.{ "time": "03:53:25 AM", "milliseconds_since_epoch": 1362196405309, "date": "03-02-2013" }
We are subscribing to the service response here in the component, similarly in this way you can consume this service in any of your components because the service is injected in the root. So in my component, as you can see I am storing the service response in the global response. Since we have logged the service response in console, you can see the response in console something like this.
Let us bind this variable to HTML. Go to app.component.html and paste this code :
<div style="text-align:center"> <h1> Welcome to {{ title }}! </h1> <h2>Current date {{globalResponse.date}}</h2> <h2>Current Time {{globalResponse.time}}</h2> </div>
And run the project, your output will be like this
Now let me give all required files source code :
App.module.tsimport { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { HttpClient,HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule,HttpClientModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } date-time.service.ts: import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import {throwError} from 'rxjs' import { map, catchError } from 'rxjs/operators'; @Injectable({ providedIn: 'root' }) export class DateTimeService { public apiURL:string="http://date.jsontest.com"; constructor(private httpClient:HttpClient) { } getDateTime () { return this.httpClient.get(this.apiURL) .pipe( map(res =>res), catchError( this.errorHandler) ); } errorHandler(error: Response) { console.log(error); return throwError(error); } }
app.component.tsimport { Component,OnInit } from '@angular/core'; import { DateTimeService } from './date-time.service'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit { title = 'DotNet Techy YouTube Channel Services in Angular 6 Demo'; public globalResponse: any; constructor(private dateTimeService:DateTimeService){} ngOnInit() { this.dateTimeService.getDateTime() .subscribe((result) => { this.globalResponse = result; }, error => { //This is error part console.log(error.message); }, () => { // This is Success part console.log("Date time fetched sucssesfully."); console.log(this.globalResponse); console.log("Thanks to DotNet Techy Youtube channel who taught me, how to create services in Angular 6."); } ) } }
app.component.html<div style="text-align:center"> <h1> Welcome to {{ title }}! </h1> <h2>Current date {{globalResponse.date}}</h2> <h2>Current Time {{globalResponse.time}}</h2> </div>
Summary
Services are the backbone of every Angular application and the services in Angular come into the picture to resolve the issues as instead of repeating the same business logic, it centralizes our business logic in one place. it is very handy while working with Angular applications because it can be easily injected via dependency injection.
They are also very useful if you want to use the same instance of one class everywhere in your class. services are nothing but just classes as discussed in this article. Other than components, services may only contain logic. and one thing to be kept in mind is that it should be completely separated from the angular template.
Similarly, you can use post, put, delete as well. It is so simple if any doubt comments on the article I will help you on that.
Take our free skill tests to evaluate your skill!

In less than 5 minutes, with our skill test, you can identify your knowledge gaps and strengths.