在main.ts和app.module中使用相同的服务实例化(到处都是单个)

时间:2018-11-12 15:52:53

标签: angular dependency-injection angular-services angular-providers

我在'root'中提供了一个名为“ LocaleService”的服务,其中包含我所有的语言环境逻辑。

此服务会初始化应用的本地化,并提供一些有关语言环境的功能。

我必须在main.ts中初始化此服务,以使角度语言环境正常工作

这里是我的初始化:

var injector = ReflectiveInjector.resolveAndCreate([LocaleService]);
var localeService : LocaleService = injector.get(LocaleService)


platformBrowserDynamic().bootstrapModule(AppModule, {
  providers: [
    { provide: TRANSLATIONS, useValue: localeService.translations },
    { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' },
    { provide: LOCALE_ID, useValue: localeService.locale },
  ]
})
  .catch(err => console.log(err));

问题是,当在我的组件中使用该服务时,该服务将第二次实例化:

  constructor(private localeService : LocaleService, private userEndpoint: UserEndpoint) { }

  ngOnInit() {

    alert(this.localeService.locale);

    this.user = new User();

     this.userEndpoint.getCurrentUser().subscribe(u =>{
       this.user = u;
     })


  }

我希望我的引导程序提供程序可以在所有地方都携带相同的实例,但事实并非如此。

是否可以在我的所有应用程序中携带在main.ts中创建的同一实例?

这是我的服务:

import { Injectable } from '@angular/core';
import { loadMessages, locale } from 'devextreme/localization';
import { registerLocaleData } from '@angular/common';
import localeFRCA from '@angular/common/locales/fr-CA';
import config from "devextreme/core/config";
import "devextreme-intl";

declare const require;

@Injectable({providedIn:'root'})
export class LocaleService {

  translations : string;
  locale : string;

  constructor(){

    //Default currency CAD
    config({defaultCurrency:"CAD"});
    //register angular locale frCA
    registerLocaleData(localeFRCA);

    let dxMessageFR = require("devextreme/localization/messages/fr.json");
    loadMessages(dxMessageFR);

    this.locale = localStorage.getItem('locale');
    if (!this.locale) {

      if (navigator.language.toUpperCase().indexOf("FR") !== -1)
      this.locale = "fr-CA";
      else
      this.locale = "en-CA";

      localStorage.setItem('locale', this.locale);

    }
    //set devextreme intl language for dev extreme widget;
    locale(this.locale);

    this.translations = require(`raw-loader!../../locale/messages.${this.locale}.xlf`);
  }


}

2 个答案:

答案 0 :(得分:0)

“问题”是

@Injectable({providedIn:'root'})
export class LocaleService {
...

providedIn: 'root'告诉Angular为整个应用程序提供该服务。
这是Angular 6中的一项新功能,需要一点时间来熟悉。 :-)

您将在模块中第二次提供服务。

platformBrowserDynamic().bootstrapModule(AppModule, {
    providers: [
    { provide: LocaleService, useValue: localeService},
    { provide: TRANSLATIONS, useValue: localeService.translations },
    { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' },
    { provide: LOCALE_ID, useValue: localeService.locale },
  ]
})

请仅使用两个版本之一,而happines将由您使用。 :-)

热烈的问候

答案 1 :(得分:0)

我最终使用了全局静态类而不是注入。 我唯一要做的就是像下面这样在main.ts中调用我的init方法:

LocaleService.init();

现在,我也可以将服务导入我需要的任何地方:

import { LocaleService } from './app/services/locale.service';

这是我的课:

export class LocaleService {

  static translations : string;
  static locale : string;

 static init(){

   //Default currency CAD
   config({defaultCurrency:"CAD"});
   //register angular locale frCA
   registerLocaleData(localeFRCA);

   let dxMessageFR = require("devextreme/localization/messages/fr.json");
   loadMessages(dxMessageFR);

   this.locale = localStorage.getItem('locale');
   if (!this.locale) {

     if (navigator.language.toUpperCase().indexOf("FR") !== -1)
     this.locale = "fr-CA";
     else
     this.locale = "en-CA";

     localStorage.setItem('locale', this.locale);

   }
   //set devextreme intl language for dev extreme widget;
   locale(this.locale);

   this.translations = require(`raw-loader!../../locale/messages.${this.locale}.xlf`);

 }

};