ZF2动态表格过滤器/验证器

时间:2012-11-27 15:06:35

标签: zend-framework2 zend-form2

我正在设置一个可以创建表单的控制器。 我不能使用扩展到Form类,所以我需要在我的控制器上构建我的表单。

$form = new Form('example');
$fieldset = new Fieldset('default');
$fieldset->add(array('name' => 'example_field', 'attributes' => array('type' => 'text', 'id' => 'example_field'), 'options' => array('label' => 'Example Field',),));
$form->add($fieldset);

这里的主要问题是,如何为每个元素/字段集定义过滤器和验证器,而不需要创建实现InputFilterAwareInterface的类,所以我可以从我的控制器做所有事情?

提前致谢!

2 个答案:

答案 0 :(得分:2)

您可以通过表单的句柄InputFilter添加/删除表单验证器,这是我的示例:

$form = new \Zend\Form\Form();
$name = array(
        'name' => 'username',
        'options' => array(
            'label' => 'Your name',
        ),
        'attributes' => array(
            'type'  => 'text'
        ),
);
$form->add($name);


$filter = $form->getInputFilter();
$filter->remove('username');
$filter->add(array(
    'name' => 'username',
    'required' => true,
    'validators' => array (
        'stringLength' => array (
            'name' => 'StringLength',
            'options' => array (
                'max' => '3',
            ),
        ),
    ),
));
$form->setInputFilter($filter);


$form->setData(array(
    'username' => 'longtext',
));
$form->prepare();
echo $form->isValid(); //false
print_r($form->getMessages()); //stringLengthTooLong error will show

答案 1 :(得分:1)

动态添加验证器:

$form->getInputFilter()->get('element_name')->getValidatorChain()->attach(new ValidatorClassName());

动态添加过滤器:

$form->getInputFilter()->get('element_name')->getFilterChain()->attach(new FilterClassName());