TYPO3版本7.6.2 - 条件ViewHelpers只评估一次

时间:2016-01-11 18:59:23

标签: typo3 fluid view-helpers typo3-7.6.x

问题:我写了一个条件VH(扩展AbstractConditionViewHelper)并且它按常规方式工作,无论如何我意识到在非缓存版本中它会被评估只有一次。最初,我认为这是我的错误,但检查了常见<f:if>,问题是相同的:S

一般情况下,当我第一次访问我的页面时,会评估条件并给出有效结果,但是当我刷新页面时,VH不再被调用(通过在VH内设置断点来检查) )并且VH始终被视为FALSE。只有视图代码的任何更改都会导致VH评估一次,并且下次刷新再也不会调用VH。

typo3conf / EXT /工具箱/类别/ ViewHelpers / IsFieldRequiredViewHelper.php:

<?php
namespace Vendor\Toolbox\ViewHelpers;

class IsFieldRequiredViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractConditionViewHelper {

    /**
     * @param string $fieldName      Current field name
     * @param string $requiredFields List of required names separated by commas
     *
     * @return string the rendered string
     */
    public function render($fieldName, $requiredFields) {

        $requiredArray = \TYPO3\CMS\Core\Utility\GeneralUtility::trimExplode(',', $requiredFields, true);

        return (in_array($fieldName, $requiredArray))
            ? $this->renderThenChild()
            : $this->renderElseChild();
    }
}

用法:

{namespace toolbox=Vendor\Toolbox\ViewHelpers}

<toolbox:isFieldRequired fieldName="foo" requiredFields="foo, bar, baz">
    <f:then>TRUE</f:then>
    <f:else>FALSE</f:else>
</toolbox:isFieldRequired>

对于第一次点击,我有TRUE但后来只有FALSE

有什么建议吗?自7.x-?

以来,我是否错过了ViewHelpers API中的一些重要更改

当然,如果扩展名被缓存,它将不可见,因为第一次命中将保存在具有适当VH返回的缓存中。

2 个答案:

答案 0 :(得分:8)

AbstractConditionViewHelper实现了TYPO3\CMS\Fluid\Core\ViewHelper\Facets\CompilableInterface接口。这意味着它实现了一个compile方法,该方法实际返回将存储在已编译的Fluid视图中的PHP代码。

source code

中查看此方法
 public function compile($argumentsVariableName, $renderChildrenClosureVariableName, &$initializationPhpCode, \TYPO3\CMS\Fluid\Core\Parser\SyntaxTree\AbstractNode $syntaxTreeNode, \TYPO3\CMS\Fluid\Core\Compiler\TemplateCompiler $templateCompiler)
 {
     foreach ($syntaxTreeNode->getChildNodes() as $childNode) {
         if ($childNode instanceof ViewHelperNode
             && $childNode->getViewHelperClassName() === ThenViewHelper::class) {
             $childNodesAsClosure = $templateCompiler->wrapChildNodesInClosure($childNode);
             $initializationPhpCode .= sprintf('%s[\'__thenClosure\'] = %s;', $argumentsVariableName, $childNodesAsClosure) . LF;
         }
         if ($childNode instanceof ViewHelperNode
             && $childNode->getViewHelperClassName() === ElseViewHelper::class) {
             $childNodesAsClosure = $templateCompiler->wrapChildNodesInClosure($childNode);
             $initializationPhpCode .= sprintf('%s[\'__elseClosure\'] = %s;', $argumentsVariableName, $childNodesAsClosure) . LF;
         }
     }

     return sprintf('%s::renderStatic(%s, %s, $renderingContext)',
         get_class($this), $argumentsVariableName, $renderChildrenClosureVariableName);
 }

编译后,render()方法将不再被调用(它将在第一次调用时,当模板尚未编译时)。相反,将调用renderStatic()方法。

解决方案:您可以

  1. 还会覆盖renderStatic()方法并在那里(再次)实现您的ViewHelper逻辑
  2. 未实施render()方法,只是覆盖静态evaluateCondition($arguments)方法。此方法实际上是为了覆盖 - render()renderStatic()的默认实现都调用此方法:

      

    此方法决定条件是TRUE还是FALSE。可以在扩展视图中调整它以调整功能。

    static protected function evaluateCondition($arguments = null)
    {
        $requiredArray = \TYPO3\CMS\Core\Utility\GeneralUtility::trimExplode(',', $arguments['requiredFields'], true);
        return (in_array($arguments['fieldName'], $requiredArray));
    }
    

答案 1 :(得分:0)

最快的解决方案是像这样覆盖类render和valuateCondition:

public function initializeArguments()
   {
        parent::initializeArguments();
        $this->registerArgument('yourArgument','array','',true);
   }

public function render() 
    {
        return self::evaluateCondition($this->arguments) ? $this->renderThenChild() : $this->renderElseChild();
    }

/**
 * @return bool
 */
protected static function evaluateCondition($arguments = null) 
    {
         //do your stuff
         return true;
    }