May 2018
Intermediate to advanced
512 pages
11h 3m
English
Any code that touches outside of the boundaries of a component should exist in a service; this includes inter-component communication, unless there's a parent-child relationship, and API calls of any kind and any code that cache or retrieve data from a cookie or the browser's localStorage. This is a critical architectural pattern that keeps your application maintainable in the long term. I expand upon this idea in my DevPro MVVM article at http://bit.ly/MVVMvsMVC.
To create an Angular service, do this:
src/app...└── weather ├── weather.service.spec.ts └── weather.service.ts
A generated service has two parts:
Read now
Unlock full access