Router 用途
Angular Router 負責管理 Angular Web App 中的不同頁面之間的 路由,
透過 Router
模組提供了路由的機制,
讓 Angular Web App 進行 類似傳統網頁應 的導航,
但 不需要重新加載 整個應用程式,
可以通過 RouterModule
進行自訂 & 訪問
通過設定路由規則可以讓 Angular 在特定的 URL 下載入特定 Component
// path 為路徑, component 決定要載入的 Component
const routes: Routes = [{ path: "users/:id", component: UserComponent }];