Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Spartacus storefront 如何更改TableConfig中的链接_Spartacus Storefront - Fatal编程技术网

Spartacus storefront 如何更改TableConfig中的链接

Spartacus storefront 如何更改TableConfig中的链接,spartacus-storefront,Spartacus Storefront,我想更改TableConfig中的url 我尝试添加带有路由的ConfigModule.withConfig,但这不起作用。有什么想法吗 ConfigModule.withConfig({ cmsComponents: { ManageUsersListComponent: { component: CustomListComponent, }, routing :{ routes: { UserDetailsCompo

我想更改TableConfig中的url

我尝试添加带有路由的ConfigModule.withConfig,但这不起作用。有什么想法吗

    ConfigModule.withConfig({
  cmsComponents: {
    ManageUsersListComponent: {
      component: CustomListComponent,
    },
    routing :{
      routes: {
        UserDetailsComponent: {paths: ['/custom/path'] }
      }
    }
  },
}),

Thx已修复,带有类型+详细信息

ConfigModule.withConfig({
  routing :{
    routes: {
      'orgUserDetails': {
          paths: [listPath],
          paramsMapping,
      }
    }
  }
})