带有forRoot方法的惰性模块

时间:2019-10-24 12:04:13

标签: javascript angular lazy-loading angular-routing angular8

我有一个使用新的angular 8方法延迟加载的angular模块:

loadChildren: () => import('path').then(module => module.MyModuleClass)

这工作正常,但是现在我需要配置模块。通常,这可以通过实现返回forRoot()对象的静态ModuleWithProviders方法来轻松实现。但是,如果我这样称呼它:

loadChildren: () => import('path').then(module => module.MyModuleClass.forRoot(myConfig))

...然后我收到运行时错误Error: Uncaught (in promise): Error: No NgModule metadata found for '[object Object]'.

是否可以将模块配置用于延迟加载的模块?

0 个答案:

没有答案