您好,登錄后才能下訂單哦!
小編給大家分享一下javascript和Angular中如何使用Router.navigate的relativeTo參數跳轉,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
在使用this.router.navigate(['../'],{relativeTo:this.route})進行路由跳轉時,V1Component、V2Component都無法通過'../'、'../../'等方式回到上一級頁面,而V3Component卻可以,這是為什么呢?
relativeto文件目錄
clipboard.png
relativeto路由
constroutes:Routes=[
{path:'',redirectTo:'page',pathMatch:'full'},
{
path:'page',
children:[
{path:'',component:PageComponent},
{
path:'v1',
children:[
{path:'',component:V1Component},
{
path:'v2',
children:[
{path:'',component:V2Component},
{path:'v3',component:V3Component}
]
}
]
},
]
}
];
v1
<p>我是v1</p>
<p><ahref="javascript:void(0);"(click)="goV2()">進入v2</a></p>
<p><ahref="javascript:void(0);"(click)="goV3()">進入v3</a></p>
<p><ahref="javascript:void(0);"(click)="backPage()">回到page</a></p>
goV2(){
this.router.navigate(['v2'],{relativeTo:this.route});
}
goV3(){
this.router.navigate(['v2/v3'],{relativeTo:this.route});
}
backPage(){
this.router.navigate(['../'],{relativeTo:this.route});//沒反應
}
看完了這篇文章,相信你對“javascript和Angular中如何使用Router.navigate的relativeTo參數跳轉”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。