我想为使用 Nebular UI 工具包的 Angular 应用程序添加多语言支持。我已经安装并配置ngx-translate
了模块,它可以很好地加载翻译。但是,我无法使其在身份验证组件中工作。我将尝试用一个例子来解释它:
我正在使用继承 Nebular 基础组件的自定义组件。例如,我的登录组件声明如下:
export class LoginComponent extends NbLoginComponent implements OnInit {
我需要将 ngx-translateTranslateService
注入其中,所以构造函数应该是这样的:
constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router, translate: TranslateService) {
super(service, {}, cd, router);
}
但是,我收到以下错误:
无法解析 /home/felip/projects/wfront/src/app/auth/login/login.component.ts 中 LoginComponent 的所有参数:(?, ?, [object Object], ?, [object Object])
为了避免弄乱构造函数,我还尝试使用 AngularInjector
来访问所需的服务:
app.module.ts
export let AppInjector: Injector;
登录组件.ts
export class LoginComponent extends NbLoginComponent implements OnInit {
translate = AppInjector.get(TranslateService);
/* ... */
login.component.html
<h1 id="title" class="title">{{ "AUTH.TITLE" | translate }}</h1>
这行得通,我translate.use()
在应用程序主组件的构造函数中看到了我用我定义的语言的文本。但是,当我在运行时更改语言时,翻译不会更新。我确定这与我注射的方式有关 TranslateService
,但我不知道如何解决。
有什么建议么?谢谢!