使用查询字符串刷新页面后如何保持在同一组件上

时间:2019-05-17 09:24:16

标签: javascript angular query-string

我有两种方式可以达到的目标。

  1. 没有查询字符串参数
  2. 带有查询字符串参数

当我刷新导航页面时,没有查询字符串参数,我留在了页面上。 但是,当我刷新使用查询字符串参数导航到的页面时,我将被重定向到登录页面。

  const routeMapping = [
    { path: '', component: DashboardComponent },
    {
      routerLink: 'ssccs',
      component: SsccsComponent
    },
    ...

当我尝试添加以下内容时:

   {
      routerLink: 'ssccs?type=fromOverview',
      component: SsccsComponent
   },

它不起作用,我返回到登录页面。

该怎么办?

1 个答案:

答案 0 :(得分:0)

我认为您需要更改与此链接

   {
      routerLink: 'ssccs/:type',
      component: SsccsComponent
   },