@RouteConfig([
{ path: '/post/:post_id', component: PostComponent }
])
使用这个经典路由策略/post/1715
我收到了这个JSON数据。
{
"post_id": 1715,
"title": "The Post Title",
"urlTitle": "the-post-title",
"body": "Blah, blah ... blah"
}
但是如何通过向链接添加/post/1715/the-post-title
将路由器重定向到Stackoverflow网址样式urlTitle
?
答案 0 :(得分:7)
@RouteConfig([
{ path: 'post/:id', component: PostRedirect },
{ path: 'post/:id/:title', component: PostComponent }
])
第一个组件读取id,然后重定向到带有标题的第二个组件。