5
ngOnInit nie jest wywoływany podczas tworzenia instancji klasy Injectable
Dlaczego nie jest ngOnInit()wywoływany, gdy Injectableklasa jest rozstrzygana? Kod import {Injectable, OnInit} from 'angular2/core'; import { RestApiService, RestRequest } from './rest-api.service'; @Injectable() export class MovieDbService implements OnInit { constructor(private _movieDbRest: RestApiService){ window.console.log('FROM constructor()'); } ngOnInit() { window.console.log('FROM ngOnInit()'); } } Wyjście konsoli FROM constructor()