作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我逐字使用了来自 Changelog 的示例:
我唯一改变的是limitToPages。
routeEnhancers:
NewsPlugin:
type: Extbase
limitToPages: [82]
extension: News
plugin: Pi1
routes:
- { routePath: '/{news_title}', _controller: 'News::detail', _arguments: {'news_title': 'news'} }
defaultController: 'News::detail'
aspects:
news_title:
type: PersistedAliasMapper
tableName: 'tx_news_domain_model_news'
routeFieldName: 'path_segment'
routeValuePrefix: '/'
Symfony\Component\Routing\Exception\InvalidParameterException
Parameter "tx_news_pi1__news" for route "tx_news_pi1_0" must match "[^/]++" ("" given) to generate a corresponding URL.
in /var/www/example/htdocs/typo3_src-9.5.4/vendor/symfony/routing/Generator/UrlGenerator.php line 155
at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate(array('tx_news_pi1__news' => 0), array('_controller' => 'News::detail'), array(), array(array('variable', '/', '[^/]++', 'tx_news_pi1__news', true), array('text', '/aktuelles/artikel')), array('tx_news_pi1__news' => ''), 'tx_news_pi1_0', 1, array(), array())
in /var/www/example/htdocs/typo3_src-9.5.4/vendor/symfony/routing/Generator/UrlGenerator.php line 128
NewsDetail:
type: Extbase
limitToPages: [82]
extension: News
plugin: Pi1
routes:
- { routePath: '/{news_id}', _controller: 'News::detail', _arguments: {'news_id': 'news'} }
最佳答案
检查空 path_segment 是否是这里的问题:
select count(*) from tx_news_domain_model_news where path_segment='';
关于typo3 - 带有方面的 RouteEnhancer 抛出 InvalidParameterException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54948296/
我逐字使用了来自 Changelog 的示例: 我唯一改变的是limitToPages。 routeEnhancers: NewsPlugin: type: Extbase lim
我正在尝试为 TYPO3 扩展 web2pdf 设置 RouteEnhacer 以将 https://example.com/subpage/?tx_web2pdf_pi1[action]=gener
在后端编辑站点配置后,routeEnhancer 部分的数据不幸丢失。我注意到后端根本不反射(reflect)该部分中的数据,但我当然没想到它会被默默地杀死。 这是“有意的”或未完成的,还是我做错了什
我是一名优秀的程序员,十分优秀!