</label> </div> <button (click)="goBack()">go back</button> </div>
You added the Angular router to navigate among different components.
添加了 Angular 路由器在各个不同组件之间导航。
You turned the AppComponent
into a navigation shell with <a>
links and a <router-outlet>
.
你使用一些 <a>
链接和一个 <router-outlet>
把 AppComponent
转换成了一个导航用的壳组件。
You configured the router in an AppRoutingModule
你在 AppRoutingModule
中配置了路由器。
You defined simple routes, a redirect route, and a parameterized route.
你定义了一些简单路由、一个重定向路由和一个参数化路由。
You used the routerLink
directive in anchor elements.
你在 <a>
元素中使用了 routerLink
指令。
You refactored a tightly-coupled master/detail view into a routed detail view.
你把一个紧耦合的主从视图重构成了带路由的详情视图。
You used router link parameters to navigate to the detail view of a user-selected hero.
你使用路由链接参数来导航到所选英雄的详情视图。
You shared the HeroService
among multiple components.
在多个组件之间共享了 HeroService
服务。