详解学习笔记--路由Router类的跳转navigate

时间:2024-11-06 08:53:27

在学习的过程中路由(router)机制是离不开的,并且路由传参那更是不可避免的。今天就来详细聊聊angular4的路由传参的几种实现方式    

首先路由配置Route:

其次路由跳转    

    

1.以根路由跳转/login

this.(['login']);

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

this.(['login', 1],{relativeTo: route});

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

this.(['login', 1],{ queryParams: { name: 1 } });

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

this.(['home'], { preserveQueryParams: true });

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

this.(['home'],{ fragment: 'top' });

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

this.(['/role'], { preserveFragment: true });

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

this.(['/home'], { skipLocationChange: true });

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

this.(['/home'], { replaceUrl: true });

 


想要整理更多的碎片知识,扫码关注下面的公众号,让我们在哪里接着唠!