当前位置:  开发笔记 > 开发工具 > 正文

Angular2:没有延迟加载的路由器'loadChildren'相当于什么

如何解决《Angular2:没有延迟加载的路由器'loadChildren'相当于什么》经验,为你挑选了1个好方法。

我正在尝试"插入"包含路由配置(从中导入RouterModule.forChild())的子ngModule(功能模块)到父ngModule中.

使用延迟加载时,使用loadChildren父模块路由配置中的密钥指定"插入"子模块的位置.

例如:

export const parentModuleRouteConfig = [{
    path: 'myfeaturemodule',
    loadChildren: '/app/child.module'
}];

实际上,我不想使用延迟加载.

如何告诉路由器"插入"(或使用)给定路径的子模块中指定的路由配置?



1> makman99..:

您仍然可以使用loadChildren同步加载.这个github问题有一些例子.

export const ChildRoutes: Routes = [
    { path: '', component: ChildComponent }
];

推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有