gpt4 book ai didi

typo3 - 如何在 TYPO3 流体模板中调用实体方法?

转载 作者:行者123 更新时间:2023-12-02 20:47:44 25 4
gpt4 key购买 nike

我有一个模板,其中一行是这样的:

<f:format.htmlentitiesDecode>
{product.features}
</f:format.htmlentitiesDecode>

其中“features”是“product”数据模型的一个属性。

如果方法调用产品,我想打印结果。像这样的东西:

<f:format.htmlentitiesDecode>
{product.getStrippedFeatures}
</f:format.htmlentitiesDecode>

但这给了我空洞的内容。

如何调用产品模型中的方法并打印其输出?

最佳答案

只需在您的产品模型中添加功能,例如:

public function getStrippedFeatures()
{
return your_stripping_method($this->features);
}

Fluid 调用带有前缀 get 的属性,因此您只需要在模板中使用:

{product.strippedFeatures}

关于typo3 - 如何在 TYPO3 流体模板中调用实体方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43628699/

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