<f:link.action is =“”not =“”rendering =“”as =“”link =“”when =“”“=”“”from =“”typo3 =“”7 =“”to =“” 8 =“”

时间:2018-04-19 04:20:47

标签: typo3 typo3-6.2.x typo3-7.6.x

=“”
 <f:link.action action="show" arguments="{employee : name}"> {employeeInfo.name}</f:link.action>


我希望在点击员工姓名时获得员工的详细信息。

这在typo3 v7中完美运行,但是当升级到typo3 v8时,这不会呈现为链接,它显示为文本。

1 个答案:

答案 0 :(得分:0)

问题出在其他地方 - 我猜测如何将代码集成到模板中。我你正在使用像page.10.variables.content < styles.content.get这样的东西。 更好地使用

lib.content < styles.content.get

并在模板中

<div class="main-menu">
  <f:cObject typoscriptObjectPath="lib.mainMenu />
</div>

另见what is the best usage of typoscript in fluid templates?