当前位置: 移动技术网 > IT编程>脚本编程>AngularJs > angular2中router路由跳转navigate的使用与刷新页面问题详解

angular2中router路由跳转navigate的使用与刷新页面问题详解

2018年04月30日  | 移动技术网IT编程  | 我要评论

本文主要介绍的是angular2中router路由跳转navigate的使用与刷新页面问题的相关内容,分享出供大家参考学习,下面来看看详细的介绍:

一、router.navigate的使用

navigate是router类的一个方法,主要用来跳转路由。

函数定义:

navigate(commands: any[], extras?: navigationextras) : promise`<boolean>`
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 });

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

二、router.navigate刷新页面问题

造成这个问题一般是因为我们在<form>表单中使用<button>时忘记添加type属性,在表单中,如果忘记给按钮添加属性,会默认为submit

<button (click)="todetail()">detail</button>
todetail() {
 this._router.navigate(['/detail']);
}

解决方法:

1.添加type

<button type="button" (click)="todetail()">detail</button>

2.click添加false

<button (click)="todetail();false">detail</button>

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用angular.js能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对移动技术网的支持。

更多关于angularjs相关内容感兴趣的读者可查看本站专题:《angularjs指令操作技巧总结》、《angularjs入门与进阶教程》及《angularjs mvc架构总结

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网