分页器路线在首页上无法正常工作

时间:2019-03-07 11:46:11

标签: neoscms

分页器的路线在首页上不起作用(因为/ {node}之后是/)。还有另一种方法可以实现这一目标吗?

  name: 'pagination page > 1'
  uriPattern: '{node}/page/{--itemPaginator.currentPage}'
  defaults:
    '@package': 'Neos.Neos'
    '@controller': 'Frontend\Node'
    '@format': 'html'
    '@action': 'show'
    '--itemPaginator':
      '@package': ''
      '@subpackage': ''
      '@controller': ''
      '@action': 'index'
      '@format': 'html'
  routeParts:
    node:
      handler: Neos\Neos\Routing\FrontendNodeRoutePartHandler```

1 个答案:

答案 0 :(得分:0)

uriPattern: '{node}?page-{--itemPaginator.currentPage}'确实有效。

这不是真正的解决方案,但可能是一个好的解决方法。如果有人有更好的解决方案,请告诉我。