假设我当前在具有URL / user /:id的页面上。现在从这个页面我导航到下一页:id / posts。
原文链接:https://www.f2er.com/angularjs/144057.html现在有办法,以便我可以检查以前的URL是什么,即/ user /:id。
以下是我的路线
export const routes: Routes = [ { path: 'user/:id',component: UserProfileComponent },{ path: ':id/posts',component: UserPostsComponet } ];