TYPO3 <f:link.action> viewhelper 只呈现 url (href) 而不是 a 标签
TYPO3 <f:link.action> viewhelper that renders only the url (href) not the a tag
我需要在流畅的模板中为完整的 table 行创建 link,此语法需要以下 html 代码 (taken from this question)
<tr class="clickable-row" data-href="url://http://domain.com/index.php?...">
我尝试使用内联 viewhelper 注释生成:
<tr class="clickable-row" data-href="url://{f:link.action(pageUid: settings.detailPid, absolute: 'TRUE', controller: 'Object', pluginName: 'Objects', action: 'detail', arguments: {object:item})}">
这将 link 包裹在一个 <a tag>
中,这让一切变得混乱
您要找的ViewHelper是<f:uri.action>
https://fluidtypo3.org/viewhelpers/fluid/master/Uri/ActionViewHelper.html
我需要在流畅的模板中为完整的 table 行创建 link,此语法需要以下 html 代码 (taken from this question)
<tr class="clickable-row" data-href="url://http://domain.com/index.php?...">
我尝试使用内联 viewhelper 注释生成:
<tr class="clickable-row" data-href="url://{f:link.action(pageUid: settings.detailPid, absolute: 'TRUE', controller: 'Object', pluginName: 'Objects', action: 'detail', arguments: {object:item})}">
这将 link 包裹在一个 <a tag>
中,这让一切变得混乱
您要找的ViewHelper是<f:uri.action>
https://fluidtypo3.org/viewhelpers/fluid/master/Uri/ActionViewHelper.html