哇
this.router.navigate(['/services', {outlets: {'servicelistright': ['servicelist']}}]);
如果我在下面的 url 我得到使用下面的查询参数:
http://localhost:4200/#/services/(servicelistright:servicelist;type=11)
this.route.params.map(params => params['type'])
.subscribe(type => { console.log('stupid',type) });
好吧,我认为这真是太棒了……哇太棒了……
但是我到底该如何添加查询参数呢?
1)通过使用 router.navigate
this.router.navigate(['/services', {outlets: {'servicelistright': ['servicelist']}}]);
我在哪里添加 type=11 ???
或者我的路由器链接
<a md-raised-button routerLinkActive="['active']" [routerLink]="['/services']" ">Raised button</a>