使用Typo3 Extbase Fluid创建并验证父/子对象

时间:2015-08-14 08:24:02

标签: validation typo3 extbase

我想在Fluid View窗体中创建一个父对象,在StorageObject中有几个子对象(1:n关系)。 FormData将被传输到数据库,如果出现错误,NEW Property Mapper的验证器将返回它。但只有在父对象的表单字段中才有" f3-form-error"上课了。但是在不一致的子对象上没有任何反应。

(在Typo3 6.2.5中工作)

正如您在下面的简短示例中所看到的,ChildObjects作者的Propertymapping并未获得给定的UID。而是Mapper提供自定义ID。我认为这就是为什么ValidationResult没有返回到输入框的原因。

请帮忙!

简短示例:

//控制器

    public function initializeCreateAction() {
            $this->arguments->getArgument('newSubmission')->getPropertyMappingConfiguration()->allowProperties('authors');
            $this->arguments->getArgument('newSubmission')->getPropertyMappingConfiguration()->allowCreationForSubProperty('authors.*');
            $this->arguments->getArgument('newSubmission')->getPropertyMappingConfiguration()->forProperty('authors.*')->allowProperties('firstname');

        }

//流体

<f:form.textfield property="type" /><br />
    <f:for each="{authors}" as="author" key="uid" iteration="iterator">
  <f:form.textfield property="authors.{uid}.firstname" placeholder="Enter your first given name" />
</f:for>

//调试

$result = $this->getControllerContext()->getRequest()->getOriginalRequestMappingResults();

//输出

array(19 items)
   newSubmission.type => array(1 item)
      0 => TYPO3\CMS\Extbase\Validation\Errorprototypeobject
         message => 'The given subject was NULL.' (27 chars)
         code => 1221560910 (integer)
         arguments => array(empty)
         title => '' (0 chars)
   newSubmission.authors.000000006200d7b200007f3972b36107.email => array(1 item)
      0 => TYPO3\CMS\Extbase\Validation\Errorprototypeobject
         message => 'The given subject was not a valid email address.' (48 chars)
         code => 1221559976 (integer)
         arguments => array(empty)
         title => '' (0 chars)
   newSubmission.authors.000000006200d7b400007f3972b36107.email => array(1 item)
      0 => TYPO3\CMS\Extbase\Validation\Errorprototypeobject
         message => 'The given subject was not a valid email address.' (48 chars)
         code => 1221559976 (integer)
         arguments => array(empty)
         title => '' (0 chars)
   newSubmission.authors.000000006200d7b700007f3972b36107.email => array(1 item)
      0 => TYPO3\CMS\Extbase\Validation\Errorprototypeobject
         message => 'The given subject was not a valid email address.' (48 chars)
         code => 1221559976 (integer)
         arguments => array(empty)
         title => '' (0 chars)

1 个答案:

答案 0 :(得分:1)

经过几天的努力,我终于找到了一个DIRTY解决方案。 我写了一个自己的errorAction并覆盖了这些值。一定有更好的解决方案!!!!我的代码在这里:

 protected function errorAction() {


        //\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($this->arguments->getValidationResults()->forProperty('newSubmission.authors'));
         $authorErrors = $this->arguments->getValidationResults()->forProperty('newSubmission.authors')->getSubResults();

         $i = 1;
         foreach ( $authorErrors  as $uid => $author) {
            foreach ( $author->getSubResults()  as $property => $error) {
               $this->arguments->getValidationResults()->forProperty('newSubmission.authors.'.$i.'.'.$property)->addError(new \TYPO3\CMS\Extbase\Error\Error('Error', time()));
            }
            $i++;
        }

}