时间:2021-07-01 10:21:17 帮助过:13人阅读
最近一直在学习angular4,它确实比以前有了很大的变化和改进,好多地方也不是那么容易就能理解,好在官方的文档和例子是中文,对英文不太好的还是有很大帮助去学习。
在学习的过程中路由(router)机制是离不开的,并且好多地方都要用到。
首先路由配置Route:
其次路由跳转Router.navigate
navigate(commands: any[], extras?: NavigationExtras) : Promise<boolean>
interface NavigationExtras { relativeTo : ActivatedRoute queryParams : Params fragment : string preserveQueryParams : boolean queryParamsHandling : QueryParamsHandling preserveFragment : boolean skipLocationChange : boolean replaceUrl : boolean }
1.以根路由跳转/login
2.设置relativeTo相对当前路由跳转,route是ActivatedRoute的实例,使用需要导入ActivatedRoute
3.路由中传参数 /login?name=1
4.preserveQueryParams默认值为false,设为true,保留之前路由中的查询参数/login?name=1 to /home?name=1
5.路由中锚点跳转 /home#top
6.preserveFragment默认为false,设为true,保留之前路由中的锚点/home#top to /role#top
7.skipLocationChange默认为false,设为true,路由跳转时浏览器中的url会保持不变,但是传入的参数依然有效
8.replaceUrl默认为true,设为false,路由不会进行跳转
以上就是Angular4中路由Router类的跳转navigate的详细内容,更多请关注Gxl网其它相关文章!