gpt4 book ai didi

javascript - 为什么组件没有以 Angular 加载?

转载 作者:行者123 更新时间:2023-11-30 20:29:03 29 4
gpt4 key购买 nike

我正在尝试学习 angular 4 中的延迟加载。我从本教程中获得了帮助 How to Lazy Load Components in Angular 4 in Three Steps使用 loadchildren我尝试在我的示例中实现这一点。我的应用程序运行良好,但延迟加载不起作用。

我在标题上有四个选项卡(第一、第二、第三、第四)。当我点击 thirdfourth 时,我没有找到任何额外的网络加载模块

这里是 my code

enter image description here

const  appRoutes: Routes = [
{ path: 'first', component: FirstComponent },
{ path: 'second', component: SecondComponent },
{ path: 'seo', loadChildren: '../foo/foo.module#FooModule'},
{ path: '',redirectTo: '/first',pathMatch: 'full'}
];
@NgModule({
imports: [ BrowserModule, FormsModule ,RouterModule.forRoot(appRoutes)],
declarations: [ AppComponent,FirstComponent,SecondComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }

我做错了什么?

最佳答案

您的代码没有错,我用 localhost 进行了测试,它按预期呈现。我认为 stackblitz 有不同的方式来处理延迟加载。 stackblitz's issue enter image description here

关于javascript - 为什么组件没有以 Angular 加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50562841/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com