angular-cn/aio/content/guide/routing-with-urlmatcher.md

141 lines
6.1 KiB
Markdown

# Tutorial: Creating custom route matches
The Angular Router supports a powerful matching strategy that you can use to help users navigate your application. This matching strategy supports static routes, variable routes with parameters, wildcard routes, and so on. You can also build your own custom pattern matching for situations in which the URLs are more complicated.
In this tutorial, you'll build a custom route matcher using Angular's `UrlMatcher`. This matcher looks for a Twitter handle in the URL.
For a working example of the final version of this tutorial, see the <live-example></live-example>.
## Objectives
Implement Angular's `UrlMatcher` to create a custom route matcher.
## Prerequisites
To complete this tutorial, you should have a basic understanding of the following concepts:
* JavaScript
* HTML
* CSS
* [Angular CLI](/cli)
If you are unfamiliar with how Angular's router works, we recommend you review [Using Angular routes in a single-page application](guide/router-tutorial).
## Create a sample application
Using the Angular CLI, create a new application, _angular-custom-route-match_. In addition to the default Angular application framework, you will also create a _profile_ component.
1. Create a new Angular project, _angular-custom-route-match_.
<code-example language="sh">
ng new angular-custom-route-match
</code-example>
When prompted with `Would you like to add Angular routing?`, select `Y`.
When prompted with `Which stylesheet format would you like to use?`, select `CSS`.
After a few moments, a new project, `angular-custom-route-match`, is ready.
1. From your terminal, navigate to the `angular-custom-route-match` directory.
1. Create a component, _profile_.
<code-example language="sh">
ng generate component profile
</code-example>
1. In your code editor, locate the file, `profile.component.html` and replace
the placeholder content with the following HTML.
<code-example path="routing-with-urlmatcher/src/app/profile/profile.component.html" header="src/app/profile/profile.component.html"></code-example>
1. In your code editor, locate the file, `app.component.html` and replace
the placeholder content with the following HTML.
<code-example path="routing-with-urlmatcher/src/app/app.component.html" header="src/app/app.component.html"></code-example>
## Configure your routes for your application
With your application framework in place, you next need to add routing capabilities to the `app.module.ts` file. As a part of this process, you will create a custom URL matcher that looks for a Twitter handle in the URL. This handle is identified by a preceding `@` symbol.
1. In your code editor, open your `app.module.ts` file.
1. Add an `import` statement for Angular's `RouterModule` and `UrlMatcher`.
<code-example path="routing-with-urlmatcher/src/app/app.module.ts" header="src/app/app.module.ts" region="import"></code-example>
1. In the imports array, add a `RouterModule.forRoot([])` statement.
<code-example path="routing-with-urlmatcher/src/app/app.module.ts" header="src/app/app.module.ts" region="imports-array"></code-example>
1. Define the custom route matcher by adding the following code to the `RouterModule.forRoot()` statement.
<code-example path="routing-with-urlmatcher/src/app/app.module.ts" header="src/app/app.module.ts" region="matcher"></code-example>
This custom matcher is a function that performs the following tasks:
* The matcher verifies that the array contains only one segment.
* The matcher employs a regular expression to ensure that the format of the username is a match.
* If there is a match, the function returns the entire URL, defining a `username` route parameter as a substring of the path.
* If there isn't a match, the function returns null and the router continues to look for other routes that match the URL.
<div class="is-helpful">
A custom URL matcher behaves like any other route definition. You can define child routes or lazy loaded routes as you would with any other route.
</div>
## Subscribe to the route parameters
With the custom matcher in place, you now need to subscribe to the route parameters in the `profile` component.
1. In your code editor, open your `profile.component.ts` file.
1. Add an `import` statement for Angular's `ActivatedRoute` and `ParamMap`.
<code-example path="routing-with-urlmatcher/src/app/profile/profile.component.ts" header="src/app/profile/profile.component.ts" region="activated-route-and-parammap"></code-example>
1. Add an `import` statement for RxJS `map`.
<code-example path="routing-with-urlmatcher/src/app/profile/profile.component.ts" header="src/app/profile/profile.component.ts" region="rxjs-map"></code-example>
1. Subscribe to the `username` route parameter.
<code-example path="routing-with-urlmatcher/src/app/profile/profile.component.ts" header="src/app/profile/profile.component.ts" region="subscribe"></code-example>
1. Inject the `ActivatedRoute` into the component's constructor.
<code-example path="routing-with-urlmatcher/src/app/profile/profile.component.ts" header="src/app/profile/profile.component.ts" region="activatedroute"></code-example>
## Test your custom URL matcher
With your code in place, you can now test your custom URL matcher.
1. From a terminal window, run the `ng serve` command.
<code-example language="sh">
ng serve
</code-example>
1. Open a browser to `http://localhost:4200`.
You should see a single web page, consisting of a sentence that reads `Navigate to my profile`.
1. Click the **my profile** hyperlink.
A new sentence, reading `Hello, Angular!` appears on the page.
## Next steps
Pattern matching with the Angular Router provides you with a lot of flexibility when you have dynamic URLs in your application. To learn more about the Angular Router, see the following topics:
* [In-app Routing and Navigation](/guide/router)
* [Router API](/api/router)
<div class="alert is-helpful">
This content is based on [Custom Route Matching with the Angular Router](https://medium.com/@brandontroberts/custom-route-matching-with-the-angular-router-fbdd48665483), by [Brandon Roberts](https://twitter.com/brandontroberts).
</div>