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