我有很多字段集,我想为每个字段集创建一个输入过滤器类。我的想法是,对于我的每个表单,我都可以创建一个由其他输入过滤器组成的输入过滤器类。例如,在通过注册表单创建帐户时,我想对我的Account
实体使用基本的Account
输入过滤器,并将其用于可以修改输入的新输入过滤器类中或添加其他的。像下面的东西。
class Register extends InputFilter
{
public function __construct(ObjectRepository $accountRepository, Account $accountFilter)
{
/***** Add inputs from input filters *****/
$this->inputs = $accountFilter->getInputs();
/***** Add additional validation rules *****/
// Username
$usernameAvailability = new NoObjectExists(array(
'object_repository' => $accountRepository,
'fields' => array('username'),
));
$username = $this->get('username');
$username->getValidatorChain()
->attach($usernameAvailability, true);
// E-mail
$emailAvailability = new NoObjectExists(array(
'object_repository' => $accountRepository,
'fields' => array('email'),
));
$email = $this->get('email');
$email->getValidatorChain()
->attach($emailAvailability, true);
}
}
我将输入过滤器传递给构造函数,我想将此过滤器的输入添加到我的Register
过滤器并修改输入。
我遇到的问题是,我的一些输入似乎只是按预期验证,我似乎无法弄清楚原因。当我提交表单时,只有一些输入按预期验证:
有趣的是,填写我数据库中已存在的电子邮件时,电子邮件输入的行为不符合预期。结果应该是已经存在的验证错误,但这不会发生。如果我调试并查看我的表单,我发现了以下内容:
表单的过滤器具有正确的输入和正确的验证器,如上图所示,username
输入似乎确实正确验证。但出于某种原因,这在我的形式中没有在视觉上反映出来。
以下是我的代码。
字段集
class Profile extends Fieldset
{
public function __construct(ObjectManager $objectManager)
{
parent::__construct('profile');
$this->setHydrator(new DoctrineHydrator($objectManager))
->setObject(new ProfileEntity());
// Elements go here
$this->add(new AccountFieldset($objectManager));
}
}
class Account extends Fieldset
{
public function __construct()
{
parent::__construct('account');
$username = new Element\Text('username');
$username->setLabel('Username');
$password = new Element\Password('password');
$password->setLabel('Password');
$repeatPassword = new Element\Password('repeatPassword');
$repeatPassword->setLabel('Repeat password');
$email = new Element\Email('email');
$email->setLabel('E-mail address');
$birthdate = new Element\DateSelect('birthdate');
$birthdate->setLabel('Birth date');
$gender = new Element\Select('gender');
$gender->setLabel('Gender')
->setEmptyOption('Please choose')
->setValueOptions(array(
1 => 'Male',
2 => 'Female',
));
$this->add($username);
$this->add($password);
$this->add($repeatPassword);
$this->add($email);
$this->add($birthdate);
$this->add($gender);
$this->add(new CityFieldset());
}
}
表格
class Register extends Form
{
public function __construct()
{
parent::__construct('register');
// Terms and Conditions
$terms = new Element\Checkbox('terms');
$terms->setLabel('I accept the Terms and Conditions');
$terms->setCheckedValue('yes');
$terms->setUncheckedValue('');
$terms->setAttribute('id', $terms->getName());
// Submit button
$submit = new Element\Submit('btnRegister');
$submit->setValue('Register');
$profileFieldset = new ProfileFieldset($objectManager);
$profileFieldset->setUseAsBaseFieldset(true);
// Add elements to form
$this->add($terms);
$this->add($profileFieldset);
$this->add($submit);
}
}
查看
$form->prepare();
echo $this->form()->openTag($form);
$profile = $form->get('profile');
$account = $profile->get('account');
echo $this->formRow($account->get('username'));
echo $this->formRow($account->get('password'));
echo $this->formRow($account->get('repeatPassword'));
echo $this->formRow($account->get('email'));
echo $this->formRow($account->get('birthdate'));
echo $this->formRow($account->get('gender'));
$city = $account->get('city');
echo $this->formRow($city->get('postalCode'));
echo $this->formRow($form->get('terms'));
echo $this->formSubmit($form->get('btnRegister'));
echo $this->form()->closeTag();
控制器
$form = new Form\Register();
$profile = new Profile();
if ($this->request->isPost()) {
$form->bind($profile);
$form->setData($this->request->getPost());
$form->setInputFilter($this->serviceLocator->get('Profile\Form\Filter\Register'));
if ($form->isValid()) {
// Do stuff
}
}
return new ViewModel(array('form' => $form));
我在这里误解了什么吗?有没有更好的方法来做这个仍然有多个输入过滤器类?我宁愿保持我的代码可维护,而不是复制不同形式的验证规则。很抱歉很长的帖子 - 很难解释这个问题!
答案 0 :(得分:1)
好吧,好像我想出来了。显然我的第一种方法是错误的。我找到了一种为每个字段集设置输入过滤器类的方法,然后为我的表单重用这些输入过滤器,同时为某些表单元素添加额外的验证规则(来自我的字段集)。这样,我可以在每个字段集的标准输入过滤器类中定义我的通用验证规则,并针对不同的上下文(即表单)修改它们。下面是代码。这些类与问题略有不同,因为它略有简化。
主输入过滤器
// This input filter aggregates the "fieldset input filters" and adds additional validation rules
class Register extends InputFilter
{
public function __construct(ObjectRepository $accountRepository, InputFilter $profileFilter)
{
/***** ADD ADDITIONAL VALIDATION RULES *****/
// Username
$usernameAvailability = new NoObjectExists(array(
'object_repository' => $accountRepository,
'fields' => array('username'),
));
$emailInput = $profileFilter->get('account')->get('username');
$emailInput->getValidatorChain()->attach($usernameAvailability, true);
// E-mail
$emailAvailability = new NoObjectExists(array(
'object_repository' => $accountRepository,
'fields' => array('email'),
));
$emailInput = $profileFilter->get('account')->get('email');
$emailInput->getValidatorChain()->attach($emailAvailability, true);
/***** ADD FIELDSET INPUT FILTERS *****/
$this->add($profileFilter, 'profile');
}
}
个人资料输入过滤器
class Profile extends InputFilter
{
public function __construct(InputFilter $accountFilter)
{
$this->add($accountFilter, 'account');
// Add generic validation rules (inputs) for the profile fieldset here
}
}
上面代码中引用的Account
输入过滤器是一个完全正常的输入过滤器类,它扩展了Zend\InputFilter\InputFilter
并添加了输入。没什么特别的。
我的字段集保持不变,与问题中的字段集完全相同,表单类和控制器也是如此。使用Register
方法将setInputFilter
输入过滤器添加到表单中,这就是它!
使用这种方法,每个输入过滤器实例都会添加到字段集中 - 这是我的第一种方法没有做到的。我希望这可以帮助有类似问题的人!