我有两种方式可以达到的目标。
当我刷新导航页面时,没有查询字符串参数,我留在了页面上。 但是,当我刷新使用查询字符串参数导航到的页面时,我将被重定向到登录页面。
const routeMapping = [
{ path: '', component: DashboardComponent },
{
routerLink: 'ssccs',
component: SsccsComponent
},
...
当我尝试添加以下内容时:
{
routerLink: 'ssccs?type=fromOverview',
component: SsccsComponent
},
它不起作用,我返回到登录页面。
该怎么办?
答案 0 :(得分:0)
我认为您需要更改与此链接
{
routerLink: 'ssccs/:type',
component: SsccsComponent
},