最佳答案
假设我当前所在的页面的 URL 为 /user/:id
。现在从这一页导航到下一页 :id/posts
。
现在有没有一种方法,让我可以检查什么是以前的网址,即 /user/:id
。
下面是我的路线
export const routes: Routes = [
{
path: 'user/:id', component: UserProfileComponent
},
{
path: ':id/posts', component: UserPostsComponet
}
];