Angular service doesn't work within other service
问题 I'm using ngx-translate library for translations. In my components (lazy loaded routes) When I set the following, it works fine: constructor( public translate:TranslateService ) { this.translate.setDefaultLang( this.langService.lang ); this.translate.use( this.langService.lang ); } I have my own LangService just to save user's selected language. I set it to lang property and use TranslateService there: lang:string = "fa"; constructor(public translate: TranslateService) { // this works console