angular 2 ngx-breadcrumbs设置GET参数

时间:2018-06-25 21:18:28

标签: angular breadcrumbs

我对此组件https://www.npmjs.com/package/ngx-breadcrumbs有疑问。我无法将get参数传递给组件本身中的链接。我使用了示例

breadcrumbsConfig.postProcess = (x) => {

  x[2].text = '2111111111';
  x[2].path = '333?ss=sdsds';

  return x;
};

并且链接看起来像这样http://localhost:4200/dictionary/333%3Fss%3Dsdsds,但它应该是http://localhost:4200/dictionary/333?ss=sdsds

我需要以某种方式将Get参数添加到此组件中的链接 enter image description here

您可以在这里https://stackblitz.com/edit/angular-wjxjvx?file=src%2Fapp%2Fapp-routing.module.ts

0 个答案:

没有答案