navigate是Router类的一个方法,主要用来跳转路由。
Posted jayruan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了navigate是Router类的一个方法,主要用来跳转路由。相关的知识,希望对你有一定的参考价值。
navigate是Router类的一个方法,主要用来跳转路由。
1
2
3
4
5
6
7
8
9
|
interface NavigationExtras { relativeTo : ActivatedRoute queryParams : Params fragment : string preserveQueryParams : boolean preserveFragment : boolean skipLocationChange : boolean replaceUrl : boolean } |
1.this.router.navigate([‘user‘, 1]);
以根路由为起点跳转
2.this.router.navigate([‘user‘, 1],{relativeTo: route});
默认值为根路由,设置后相对当前路由跳转,route是ActivatedRoute的实例,使用需要导入ActivatedRoute
3.this.router.navigate([‘user‘, 1],{ queryParams: { id: 1 } });
路由中传参数 /user/1?id=1
4.this.router.navigate([‘view‘, 1], { preserveQueryParams: true });
默认值为false,设为true,保留之前路由中的查询参数/user?id=1 to /view?id=1
5.this.router.navigate([‘user‘, 1],{ fragment: ‘top‘ });
路由中锚点跳转 /user/1#top
6.this.router.navigate([‘/view‘], { preserveFragment: true });
默认值为false,设为true,保留之前路由中的锚点/user/1#top to /view#top
7.this.router.navigate([‘/user‘,1], { skipLocationChange: true });
默认值为false,设为true路由跳转时浏览器中的url会保持不变,但是传入的参数依然有效
8.this.router.navigate([‘/user‘,1], { replaceUrl: true });
以上是关于navigate是Router类的一个方法,主要用来跳转路由。的主要内容,如果未能解决你的问题,请参考以下文章
未在 Router.navigate() 上触发角度变化检测
vue-router.esm.js?fe87:2007 Uncaught (in promise) NavigationDuplicated {_name: "Navigation
Oracle JET mobile cordove navigator.app对象
使用没有 Navigation mixin 的 router.transitionTo() React Router 1.0
从 Angular2 路由中的子组件调用 router.parent.navigate 方法时未触发组件构造函数和路由器生命周期挂钩