我正在使用@RouteConfig 进行导航,路线配置就像
@RouteConfig([
{ path: '/calendar', name: 'Calendar', component: CalendarComponent }]}
当我使用路由链接时加载 CarouselComponent,例如
<a [routerLink]="['Calendar']">Calendar</a>
并且 URL 路由到http://localhost:60708/calendar
但是,当我想直接通过在地址栏中输入 URL 来访问 URL http://localhost:60708/calendar 或者通过单击路由链接访问页面后单击 F5(刷新页面),页面没有显示更多。
为什么会这样?如何使用 URL 路径加载组件?