douliudong8108 2017-06-06 09:01
浏览 17
已采纳

在ZF2 FieldSet中至少需要一个元素

The problem

I have a Form and a FieldSet. I would like to validate that the FieldSet is not empty. Also, I want to validate each field in the FieldSet.

So far, whatever I have tried is validating one or the other, but not both. If elements is present in the Form's input filter specification, then it validates that elements is not empty, but does not validate the bar and baz fields of FieldSet. And, of course, the other way around. Any clue as to how to approach this issue would be much appreciated.

The Form

class FooForm extends Form implements InputFilterProviderInterface
{
    public function init()
    {
        $this->add([
            'name'     => 'elements',
            'type'     => Collection::class,
            'required' => true,
            'options'  => [
                'target_element' => [
                    'type' => SomeElementFieldSet::class
                ]
            ]
        ]);
    }

    public function getInputFilterSpecification()
    {
        return [
            [
                'name'        => 'elements',
                'required'    => true,
                'validators'  => [
                    ['name' => 'NotEmpty']
                ]
            ]
        ];
    }
}

The FieldSet

class SomeElementFieldSet extends Fieldset implements InputFilterProviderInterface
{
    public function init()
    {
        $this->add(['name' => 'bar']);
        $this->add(['name' => 'baz']);
    }

    public function getInputFilterSpecification()
    {
        return [
            [
                'name'       => 'bar',
                'required'   => true,
                'validators' => [
                    ['name' => 'NotEmpty']
                ]
            ],
            [
                'name'       => 'baz',
                'required'   => true,
                'validators' => [
                    ['name' => 'NotEmpty']
                ]
            ]
        ];
    }
}

Edit: Added full validation spec.

  • 写回答

2条回答 默认 最新

  • douna4762 2017-06-26 09:26
    关注

    After getting some hints on Google and digging through the source code, I found a solution. Unfortunately the zend-inputfilter implementation is a little buggy and won't work nicely with getInputFilterSpecification(), but we can just construct our own InputFilter and return that directly:

    The Form

    class FooForm extends BaseForm
    {
        public function init()
        {
            $this->add([
                'name'    => 'elements',
                'type'    => Collection::class,
                'options' => [
                    'target_element' => [
                        'type' => SomeElementFieldSet::class
                    ]
                ]
            ]);
        }
    
        public function getInputFilter()
        {
            if (!$this->filter) {
                $this->filter = new InputFilter();
    
                /** @var Collection $elementsCollection */
                $elementsCollection = $this->fieldsets['elements'];
    
                /** @var SomeElementFieldSet $elementsFieldSet */
                $elementsFieldSet = $elementsCollection->getTargetElement();
    
                $collectionFilter = new CollectionInputFilter();
                $collectionFilter->setIsRequired(true);
                $collectionFilter->setInputFilter(
                    $elementsFieldSet->getInputFilterSpecification()
                );
    
                $this->filter->add($collectionFilter, 'elements');
            }
    
            return $this->filter;
        }
    }
    

    This will validate that there is at least one element in the collection. And will validate all the elements one by one by the FieldSet's specification.

    One problem persists, though. Whenever the collection is empty, the validation will return false, but will not return any messages. This is due to a bug in the zend-inputfilter component. Issues reported here and here. But that is another problem altogether.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)