Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > js框架/js库

详解Angular5 路由传参的3种方法

来源:中文源码网    浏览:190 次    日期:2024-05-14 03:49:02
【下载文档:  详解Angular5 路由传参的3种方法.txt 】


详解Angular5 路由传参的3种方法
本文介绍了Angular5 路由传参,一共3种方法。分享给大家,具体如下:
1.问号后面带的参数,获取参数的方式:ActivatedRoute.queryParams[id]
例如:/product?id=1&name=iphone还可以是: [ routerLink]= "['/books']" [ queryParams]= "{bookname:'《活着》'}
代码:html

Messages


Total:{{msgs.total}}



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



获取参数js
ngOnInit() {
let obj = this.route.queryParams["_value"];
console.log(obj);
}
2.冒号形式,
例如:path:/product/:id
获取参数的方式:ActivatedRoute.params[id]
上边html代码中第一个routelink就是。
另外需配置路由
{
path:'listDetail/:id',
component:ListDetailComponent
}
参考//www.zwyuanma.com/article/139125.htm
3.js里的路径跳转
例如:path:/product,component:ProductComponent,data:[{madeInChina:true}]}
获取参数的方式: ActivatedRoute.snapshot.data[0][madeInChina]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持中文源码网。

相关内容