当我使用this._router.navigate( ['Page', { param: 'a/b' }] );
导航到具有
http://localhost:3000/page?param=a/b
Angular允许我用this._routeParams.get('param')
读取参数。如果我直接访问相同的网址,则会将网址更改为
http://localhost:3000/page?param=a
而this._routeParams.get('param')
会返回a
。
我能做什么才能正常使用?