路由器和路由器之间的区别 - 在angular2中弃用

时间:2016-05-18 08:45:05

标签: angular angular-routing

我已从" beta.17"更新到" 2.0.0-rc.1"我不明白何时应该使用路由器以及何时弃用路由器?

1 个答案:

答案 0 :(得分:10)

更新为ANGULAR2 RC

在RC中的路由中有很多变化在RC之后,其中一些点我会提到这里可能会帮助某人: -

  1. angular2/router已更改@angular/router (您也可以使用导入@angular/router-deprecated来使用路由的旧功能,但到目前为止我们必须使用@angular/router)。

  2. @RouteConfig已更改为@Routes

  3. 例如: -

    @Routes([
      {path: '/crisis-center', component: CrisisListComponent},
      {path: '/heroes',        component: HeroListComponent}
    ])
    

    请尽快更新我的答案,根据更新日志中的更新。 感谢@Benedikt的评论 Article for new @Route update to angular2 RC