Angular Services
What is a Service?
Creating a Service
import { Injectable } from '@angular/core';
@Injectable()
export class UserService {
users = ['Bob', 'Mike', 'Jim'];
getUsers(): string[] {
return this.users;
}
}Dependency Injection
Services in Components
DI with @Host or @Optional
Summary
Last updated