我正在构建一个具有辅助路由的 Angular2 应用程序。我正在使用这个 plunker http://plnkr.co/edit/jZv8jj?p=preview 来帮助我进行设置,但我需要将参数传递给我的辅助链接。我怎么做?(注意:这个例子使用了旧的哈希路由,我使用的是新的 html5,但在这两种方法中都不起作用)。
@Component({
selector: 'basic-routing',
template: `<a [router-link]="['/Home']">Home</a>
<a [router-link]="['/ProductDetail']">Product Details</a>
<router-outlet></router-outlet>
<router-outlet name="chat"></router-outlet>
<a href="./#/(chat)">Chat</a>`,
directives: [ ROUTER_DIRECTIVES]
})
@RouteConfig([
{path: '/', component: HomeComponent, as: 'Home'},
{path: '/product', component: ProductDetailComponent, as: 'ProductDetail' },
new AuxRoute({path: '/chat', component: ChatComponent, as: 'Chat'})
])