返回

angular-如何在loadChildren()=>中调用forRoot方法;XPTOModule?

发布时间:2022-03-21 11:30:13 243

我在NPM中有一个模块功能。我可以通过以下方式加载此模块:

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { MyContentModule } from 'my-contentModule'

const routes: Routes = [
 { 
      path: 'my-path', 
      loadChildren: ()=> MyContentModule
    }
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule { }

上面的代码有效。但我需要用forRoot方法将数据配置传递给我的模块。

我尝试了一下,但没有成功:

const routes: Routes = [
 { 
      path: 'my-path', 
      loadChildren: ()=> MyContentModule.forRoot({})
    }
];

这个问题的替代方案是什么?

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
相关帖子