首页 > 其他 > 详细

angular5学习笔记 路由通信

时间:2018-04-28 13:35:22      阅读:371      评论:0      收藏:0      [点我收藏+]

首先在路由字典中,接收值的组件中加上:/:id

技术分享图片

在发送值的组件中,发送值的方式有几种。

第一种:<a routerLink="/detail/1">新闻详情1</a>

利用routerLink,在跳转的组件后加上要传过去的值

技术分享图片

 

接着在接收值的组件中,也就是detail组件里,引入ActivatedRoute,并实例化

技术分享图片

然后需要使用route,就能获取传过的值

技术分享图片

 

 

1.以根路由跳转/login

1
this.router.navigate([‘login‘]);

2.设置relativeTo相对当前路由跳转,route是ActivatedRoute的实例,使用需要导入ActivatedRoute

1
this.router.navigate([‘login‘, 1],{relativeTo: route});

3.路由中传参数 /login?name=1

1
this.router.navigate([‘login‘, 1],{ queryParams: { name: 1 } });

4.preserveQueryParams默认值为false,设为true,保留之前路由中的查询参数/login?name=1 to /home?name=1

1
this.router.navigate([‘home‘], { preserveQueryParams: true });

5.路由中锚点跳转 /home#top

1
this.router.navigate([‘home‘],{ fragment: ‘top‘ });

6.preserveFragment默认为false,设为true,保留之前路由中的锚点/home#top to /role#top

1
this.router.navigate([‘/role‘], { preserveFragment: true });

7.skipLocationChange默认为false,设为true,路由跳转时浏览器中的url会保持不变,但是传入的参数依然有效

1
this.router.navigate([‘/home‘], { skipLocationChange: true });

8.replaceUrl默认为true,设为false,路由不会进行跳转

1
this.router.navigate([‘/home‘], { replaceUrl: true });

 

 

angular5学习笔记 路由通信

原文:https://www.cnblogs.com/Ivan-JIANG/p/8966838.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!