gpt4 book ai didi

typo3 - 如何在流体中分配变量?

转载 作者:行者123 更新时间:2023-12-01 08:04:45 24 4
gpt4 key购买 nike

我想要可以帮助在流体中分配变量的 View 助手,我不希望变量从 Controller 传递。

最佳答案

Install extension called vhs from TYPO3 repository



在您的流体模板顶部定义命名空间,如下所示
{namespace v=FluidTYPO3\Vhs\ViewHelpers}

然后使用 set viewhelper
<v:variable.set name="test" value="12345" />
Value of test : {test}

{test} will return value 12345



报名 全局多变的
<v:variable.register.set name="test" value="12345"/>]

获取 的值全局多变的
Value of global variable : <v:variable.register.get name="test">

Since TYPO3 8.7, fluid introduces viewhelper for the variable (No need of VHS)


<f:variable name="myvariable">My variable's content</f:variable>
<f:variable name="myvariable" value="My variable's content"/>

使用内联样式
{f:variable(name: 'myvariable', value: 'My variable\'s content')}
{myoriginalvariable -> f:variable.set(name: 'mynewvariable')}

关于typo3 - 如何在流体中分配变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30804503/

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