详解Angular5 路由传参的3种方法
程序员文章站
2023-11-06 16:35:52
本文介绍了angular5 路由传参,一共3种方法。分享给大家,具体如下:
1.问号后面带的参数,获取参数的方式:activatedroute.queryparams[i...
本文介绍了angular5 路由传参,一共3种方法。分享给大家,具体如下:
1.问号后面带的参数,获取参数的方式:activatedroute.queryparams[id]
例如:/product?id=1&name=iphone还可以是: [ routerlink]= "['/books']" [ queryparams]= "{bookname:'《活着》'}
代码:html
<h4>messages</h4> <p>total:{{msgs.total}}</p> <div *ngfor="let item of msgs.data"> <b>{{item.name}}</b>: <a [routerlink]="['/next',item.id]" [queryparams]="{id:item.id, msg:item.msg, name:item.name}">{{item.msg}}</a> <a routerlink="/final">reply</a><p></p> </div>
获取参数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 }
参考
3.js里的路径跳转
例如:path:/product,component:productcomponent,data:[{madeinchina:true}]}
获取参数的方式: activatedroute.snapshot.data[0][madeinchina]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。