如何在angular4中将一个应用组件导航到另一个应用组件?

时间:2018-02-01 06:54:58

标签: angular routing

我的要求是: - 如果有两个应用程序。 app1和app2。 app1一些组件和类似的app2。那么如何重定向点击app1组件点击app2组件。

请告诉我。

1 个答案:

答案 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