我有以下设置: 在app-routing模块中:
jdbc:mysql://LocalHost:3306/internexample
在app.module.ts中,我有:
export const routes: Routes = [
{ path: '', component: AppComponent },
{ path: 'Role', component: RoleComponent }
];
在app.component.html中,我有
测试
上面的视图是iframe。但是,它找不到角色组件转到role.component.html页面并在iframe中打开它。 顺便说一下,角色组件文件位于app.component.html所在的app目录下名为role的文件夹中。 app> app.component.html,ts,css app>角色> role.component.html,ts,css
显然,VS Code中的所有内容都很好。
有什么想法丢失了?