d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
68 lines
1.7 KiB
Markdown
68 lines
1.7 KiB
Markdown
# Define Routes
|
|
|
|
Routes are objects that define which component should render for a specific URL path.
|
|
|
|
## Basic Configuration
|
|
|
|
Define routes in a `Routes` array and provide them using `provideRouter` in your `appConfig`.
|
|
|
|
```ts
|
|
// app.routes.ts
|
|
export const routes: Routes = [
|
|
{path: '', component: HomePage},
|
|
{path: 'admin', component: AdminPage},
|
|
];
|
|
|
|
// app.config.ts
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideRouter(routes)],
|
|
};
|
|
```
|
|
|
|
## URL Paths
|
|
|
|
- **Static**: Matches an exact string (e.g., `'admin'`).
|
|
- **Route Parameters**: Dynamic segments prefixed with a colon (e.g., `'user/:id'`).
|
|
- **Wildcard**: Matches any URL using `**`. Useful for "Not Found" pages. **Always place at the end of the array.**
|
|
|
|
## Matching Strategy
|
|
|
|
Angular uses a **first-match wins** strategy. Specific routes must come before less specific ones.
|
|
|
|
## Redirects
|
|
|
|
Use `redirectTo` to point one path to another.
|
|
|
|
```ts
|
|
{ path: 'articles', redirectTo: '/blog' },
|
|
{ path: 'blog', component: Blog },
|
|
```
|
|
|
|
## Page Titles
|
|
|
|
Associate titles with routes for accessibility. Titles can be static or dynamic (via `ResolveFn` or a custom `TitleStrategy`).
|
|
|
|
```ts
|
|
{ path: 'home', component: Home, title: 'Home Page' }
|
|
```
|
|
|
|
## Route Data and Providers
|
|
|
|
- **Static Data**: Attach metadata using the `data` property.
|
|
- **Route Providers**: Scope dependencies to a specific route and its children using the `providers` array.
|
|
|
|
## Nested (Child) Routes
|
|
|
|
Define sub-views using the `children` property. Parent components must include a `<router-outlet />`.
|
|
|
|
```ts
|
|
{
|
|
path: 'product/:id',
|
|
component: Product,
|
|
children: [
|
|
{ path: 'info', component: ProductInfo },
|
|
{ path: 'reviews', component: ProductReviews },
|
|
],
|
|
}
|
|
```
|