Zend Framework 2表单集合验证器

时间:2015-06-09 15:20:54

标签: php validation zend-framework2

是否可以验证表单集合以确保它至少包含N个元素?

要向表单添加集合,请使用以下表示法:

    $this->add(array(
         'type' => 'Zend\Form\Element\Collection',
         'name' => 'categories',
         'options' => array(
             'label' => 'Please choose categories for this product',
             'count' => 2,
             'should_create_template' => true,
             'allow_add' => true,
             'allow_remove' => true,
             'target_element' => array(
                 'type' => 'Application\Form\CategoryFieldset',
             ),
         ),
     ));

我们可以看到最小数量的元素设置为2,但它仍然允许仅使用1个元素保存表单。

0 个答案:

没有答案