(Angular) ngx-translate 功能模块未扩展 Parent 模块的翻译

(Angular) ngx-translate Feature Module not extending Parent Module’s translations

我懒加载功能模块。并使用 extend true 导入 TranslateModule.forChild()。(加载功能特定的翻译)

在 app.module 我正在导入 TranslateModule.forRoot。 (正在加载常用翻译)

现在我只能从功能组件访问功能模块的翻译。我可以在网络中看到 parent 的翻译正在加载但无法访问它。

任何人都知道解决方案。提前致谢..

下面翻译模块我用过

在app.module.ts中:

TranslateModule.forRoot({
  loader: {
    provide: TranslateLoader,
     useClass: CustomTranslateLoader
  }
 })

在shared.module.ts中:

@NgModule({
  imports: [
    TranslateModule
  ],
  exports: [
     TranslateModule
  ],

})

按照此链接的步骤-

https://www.techiediaries.com/angular/angular-9-internationalization-ngx-translate-tutorial-example/

https://www.positronx.io/angular-internationalization-i18n-with-ngx-translate-tutorial/

希望对你有所帮助

我使用 multihttploader npm 包修复了它。感谢回复