Wednesday, January 2, 2019

What is Angular 6 Services?

 Angular 6 Services : 

We might come across a situation where we need some code to be used everywhere on the page. It can be for data connection that needs to be shared across components, etc. Services help us achieve that. With services, we can access methods and properties across other components in the entire project.
To create a service, we need to make use of the command line. The command for the same is −
C:\projectA6\Angular6App>ng g service myservice
CREATE src/app/myservice.service.spec.ts (392 bytes)
CREATE src/app/myservice.service.ts (138 bytes)
The files are created in the app folder as follows −
https://www.tutorialspoint.com/index.htm

No comments:

Post a Comment