Let's talk about routing in Angular
This article will introduce you to routing in Angular. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
Environment:
- Angular CLI: 11.0.6
- Angular: 11.0.7
- Node: 12.18.3
- npm : 6.14.6
- IDE: Visual Studio Code
1. Summary
Simply speaking, in the address bar, different addresses (URL) correspond to different pages, which is routing. Also, by clicking the browser's forward and back buttons, the browser will navigate forward or backward in your browsing history, again based on routing. [Related tutorial recommendations: "angular Tutorial"]
In Angular, Router is an independent module, defined in the @angular/router module,
Router can cooperate with NgModule to perform lazy loading (lazy loading) and preloading operations of modules (refer to "Angular Getting Started to Mastery Series Tutorials (11) - Module (NgModule), Delayed Loading Module");
Router will manage the life cycle of components, and it will be responsible for creating and destroying components.
For a new AngularCLI-based project, you can add the AppRoutingModule to app.component.ts by default through the option during initialization.
2. Basic usage of Router
2.1. Preparation
We first create 2 pages to illustrate the use of routing:
1 2 |
|
Use the above AnuglarCLI command to create two components, Page1Component and Page2Component.
2.2. Register route
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
As you can see, simple route registration only requires two attributes, path and component, to define the route respectively. The relative path, and response component of this route.
2.3. Usage in html
1 2 |
|
In the html template, directly use the routerLink attribute to identify the angular route. After executing the code, you can see two hyperlinks, Page1 and Page2. Click to see that the address bar address is changed to http://localhost:4200/page2 or http://localhost:4200/page1. The page content is in page1 and page2. Switching
2.4. Usage in ts code
Sometimes, it is necessary to jump based on the business logic in ts. In ts, Router instance needs to be injected, such as
1 |
|
Jump code:
1 2 3 4 5 |
|
3. Receive parameters
##3.1 . Parameters in the path
Generally speaking, we use the parameters as a segment in the URL, such as /users/1, which represents the user whose id is 1, and the route is defined as "/users /id" style. For our simple page, for example, our page1 page can pass the id parameter, then we need to modify our routing to:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
3.2. Parameters in the parameter (QueryParameter)
There is another way to write the parameter, such as http:// localhost:4200/?name=cat, that is, after the URL address, add a question mark '?', and then add the parameter name and parameter value ('name=cat'). This is called a query parameter (QueryParameter). When taking this query parameter, it is similar to the previous routing parameter, except that paramMap is changed to queryParamMap. The code is as follows:1 2 3 4 5 6 7 8 9 |
|
4. URL path display format
Different from traditional pure static (html) sites, the URL in angular does not correspond to a real file (page), because angular takes over the routing (Routing) processing to decide which component to display to the end user. In order to adapt to different scenarios, Angular has two URL path display formats:- http://localhost:4200/page1/123
- http://localhost:4200/#/page1/123
useHash: true to app-routing.ts, such as:
1 2 3 4 5 |
|
5. Problems encountered during deployment
Similarly, because anuglar takes over the routing (Routing) processing, there will be different techniques (requirements) when deploying to servers such as iis, nginx, etc. For detailed reference: https://github.com /angular-ui/ui-router/wiki/Frequently-Asked-Questions#how-to-configure-your-server-to-work-with-html5mode
6. Summary
- angular does not support optional routing by default (e.g. /user/:id?), but we can define 2 routes pointing to the same Component to achieve this and achieve code reuse; ( Or use redirectTo)
- You can use the useHash parameter to add a # before the augular path;
- When reading parameters, you need to subscribe. Once, it cannot be read directly.
For deployment issues after packaging, check the official wifi (https://github.com/angular-ui/ui-router/wiki/Frequently-Asked-Questions#how-to-configure-your- server-to-work-with-html5mode)
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of Let's talk about routing in Angular. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

The default display behavior for components in the Angular framework is not for block-level elements. This design choice promotes encapsulation of component styles and encourages developers to consciously define how each component is displayed. By explicitly setting the CSS property display, the display of Angular components can be fully controlled to achieve the desired layout and responsiveness.

How to implement API routing in the Slim framework Slim is a lightweight PHP micro-framework that provides a simple and flexible way to build web applications. One of the main features is the implementation of API routing, allowing us to map different requests to corresponding handlers. This article will introduce how to implement API routing in the Slim framework and provide some code examples. First, we need to install the Slim framework. The latest version of Slim can be installed through Composer. Open a terminal and

Apache Camel is an Enterprise Service Bus (ESB)-based integration framework that can easily integrate disparate applications, services, and data sources to automate complex business processes. ApacheCamel uses route-based configuration to easily define and manage integration processes. Key features of ApacheCamel include: Flexibility: ApacheCamel can be easily integrated with a variety of applications, services, and data sources. It supports multiple protocols, including HTTP, JMS, SOAP, FTP, etc. Efficiency: ApacheCamel is very efficient, it can handle a large number of messages. It uses an asynchronous messaging mechanism, which improves performance. Expandable

Authentication is one of the most important parts of any web application. This tutorial discusses token-based authentication systems and how they differ from traditional login systems. By the end of this tutorial, you will see a fully working demo written in Angular and Node.js. Traditional Authentication Systems Before moving on to token-based authentication systems, let’s take a look at traditional authentication systems. The user provides their username and password in the login form and clicks Login. After making the request, authenticate the user on the backend by querying the database. If the request is valid, a session is created using the user information obtained from the database, and the session information is returned in the response header so that the session ID is stored in the browser. Provides access to applications subject to

ThinkPHP6 is a powerful PHP framework with convenient routing functions that can easily implement URL routing configuration; at the same time, ThinkPHP6 also supports a variety of routing modes, such as GET, POST, PUT, DELETE, etc. This article will introduce how to use ThinkPHP6 for routing configuration. 1. ThinkPHP6 routing mode GET method: The GET method is a method used to obtain data and is often used for page display. In ThinkPHP6, you can use the following

In modern web applications, implementing web page navigation and routing is a very important part. Using JavaScript functions to implement this function can make our web applications more flexible, scalable and user-friendly. This article will introduce how to use JavaScript functions to implement web page navigation and routing, and provide specific code examples. Implementing web page navigation For a web application, web page navigation is the most frequently operated part by users. When a user clicks on the page

Implementation method and experience summary of flexible configuration of routing rules in PHP Introduction: In Web development, routing rules are a very important part, which determines the corresponding relationship between URL and specific PHP scripts. In the traditional development method, we usually configure various URL rules in the routing file, and then map the URL to the corresponding script path. However, as the complexity of the project increases and business requirements change, it will become very cumbersome and inflexible if each URL needs to be configured manually. So, how to implement in PHP
