gpt4 book ai didi

TYPO3 路由 : List & Details Action on same Page

转载 作者:行者123 更新时间:2023-12-04 14:21:16 24 4
gpt4 key购买 nike

访问详细信息页面时抛出异常:此插件不允许操作“details”( Controller “Products”)。

我的Route Enhancer 看起来像这样:

ProductsPlugin:
type: Extbase
extension: Myext
plugin: Products
routes:
-
routePath: '/{product_slug}'
_controller: 'Products::details'
_arguments:
product_slug: productId
defaultController: 'Products::list'
defaults:
productId: '0'
aspects:
product_slug:
type: ProductsValueMapper

插件是通过TypoScript嵌入的:

lib.productsContent = USER
lib.productsContent {
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
extensionName = Myext
pluginName = Products
vendorName = Vendor

switchableControllerActions {
Products {
1 = list
}
}
}

[request.getQueryParams()['tx_myext_products']['productId'] > 0]
lib.productsContent.switchableControllerActions.Products.1 = details
[end]

Fluid-Template 中的链接由以下人员生成:

<f:link.action class="button more" pageUid="38" action="details" arguments="{productId: '{product.product.id}'}">Mehr</f:link.action>

我尝试在 _controllerdefaultController 的列表和详细信息之间切换。我也尝试删除一个或两个,但生成的链接包含 GET-Params 或 Detailview 创建上面的错误消息。

谁能把我推向正确的方向?

提前致谢!

编辑:当我删除 _controller: 'Products::details' 时,错误消息消失了,我的详细信息操作被正确调用。但是随后指向详细信息操作的链接包含常规 GET 参数。

最佳答案

问题是插件在同一个页面被多次嵌入,导致了问题。

要解决这个问题,您可以创建不同的插件或设置 plugin.tx_myext_products.mvc.callDefaultActionIfActionCantBeResolved = 1

参见:https://wiki.typo3.org/Exception/CMS/1313855175

关于TYPO3 路由 : List & Details Action on same Page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54554166/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com