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 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题