码迷,mamicode.com
首页 > 其他好文 > 详细

Angular2-路由重定向的办法

时间:2017-07-26 13:34:27      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:rip   并且   routes   out   配置   direct   path   路由配置   重定向   

  使用Angular2开发,常会遇到路由重定向的应用场景。

  路由重定向的配置办法是这样的:

{path:‘要定向的路径‘, redirectTo:‘要定向到的目标路由‘}

  比如某组件有个路由插件,并且一进入该组件就想要路由插件加载出内容,我们的路由配置可能这么写:

routes: Routes = [
	{
		path:‘‘,
		component:‘ParentComponent‘,
		children:[
			{ path:‘‘, redirectTo: ‘page1‘ },//定向
			{ path:‘page1‘, component:‘PageComponent1‘ },
			{ path:‘page2‘, component:‘PageComponent2‘ }
		]           
	}   
]

  如果是兄弟路由之间的定向,则类似这样:

routes: Routes = [
	{ path:‘‘, redirectTo: ‘page1‘ },
	{ path:‘page1‘, component:‘PageComponent1‘ },
	{ path:‘page2‘, component:‘PageComponent2‘ }
]

  

Angular2-路由重定向的办法

标签:rip   并且   routes   out   配置   direct   path   路由配置   重定向   

原文地址:http://www.cnblogs.com/longhx/p/7238933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!