Home > Web Front-end > JS Tutorial > body text

Detailed explanation of the use of Angular5 routing parameters

php中世界最好的语言
Release: 2018-05-15 09:15:49
Original
2127 people have browsed it

This time I will bring you a detailed explanation of the use of Angular5routingpassing parameters. What are the notes when using Angular5 routing parameters? The following is a practical case, let’s take a look.

1. The parameters after the question mark, the way to obtain the parameters: ActivatedRoute.queryParams[id]

For example: /product?id=1&name=iphone can also be :[ routerLink]= "['/books']" [ queryParams]= "{bookname:'《《生》'}

Code: html

Messages

Total:{{msgs.total}}

 {{item.name}}:  {{item.msg}}  Reply

Copy after login

Get parameters js

ngOnInit() {
 let obj = this.route.queryParams["_value"];
 console.log(obj);
}
Copy after login

2. Colon form,

For example: path:/product/:id

How to obtain parameters: ActivatedRoute.params[id]

The first routelink in the above html code is.

In addition, routing needs to be configured

{
 path:'listDetail/:id',
 component:ListDetailComponent
 }
Copy after login

Refer to http://www.jb51.net/article/139125.htm

3.Path jump in js

For example: path:/product,component:ProductComponent,data:[{madeInChina:true}]}

How to get parameters: ActivatedRoute.snapshot .data[0][madeInChina]

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

JS implements transparency gradient function

Detailed explanation of the steps to use .vue in vscode

The above is the detailed content of Detailed explanation of the use of Angular5 routing parameters. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Latest Issues
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!