我的要求是: - 如果有两个应用程序。 app1和app2。 app1一些组件和类似的app2。那么如何重定向点击app1组件点击app2组件。
请告诉我。
答案 0 :(得分:0)
假设您的路由模块类似..
imports goes here ....;
const routes: Routes = [
{
path: "",
component: HomePageComponent,
},
{
path: "newPage",
component: NewPageComponent,
}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule {}
并且,让您的默认网址为localhost:4200,然后,在网址,localhost:4200 / newPage上,您会看到加载的新组件,NewPageComponent
中提到的Routes
。