我很乐意在没有前导斜线的情况下获得角度2路由的帮助。
在按钮上单击我想要使用相同的URL更改当前路径,但使用参数。
我当前的代码(使用前导斜杠):
export const routes: Routes = [
{
path: 'index.php?option=regular&view=search&Itemid=100/:query',
component: MainComponent,
},
{
path: 'index.php',
component: MainComponent,
}
];
点击按钮:
this.router.navigate([this.router.url, this.searchPramas]);
我的目标是替换斜杠:
/:查询
到
&安培;:查询
我看到那件事可能是可能的:add support for route links with no leading slash