如何使用ZF2中的数组表单设置使字段验证依赖于另一个字段?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用ZF2中的数组表单设置使字段验证依赖于另一个字段?相关的知识,希望对你有一定的参考价值。
在我的表单中,我有一个字段foo
,在数据库表中应该是唯一的。所以我在其验证器列表中添加了一个Zend\Validator\Db\NoRecordExists
:
namespace Bar\Form\Fieldset;
use Zend\Form\Fieldset;
use Zend\InputFilter\InputFilterProviderInterface;
use Zend\Db\Adapter\AdapterInterface;
class BuzFieldset extends Fieldset implements InputFilterProviderInterface
{
protected $dbAdapter;
public function __construct($name = null, $options = []) {...}
public function setDbAdapter(AdapterInterface $dbAdapter) {...}
public function init()
{
$this->add([
'name' => 'id',
'type' => 'hidden'
]);
$this->add(
[
'name' => 'foo',
'type' => 'text',
'options' => [...],
'attributes' => [
'required' => 'required',
'class' => 'form-control'
]
]);
...
}
public function getInputFilterSpecification()
{
return [
'foo' => [
'required' => true,
'validators' => [
[
'name' => 'Regex',
'options' => [
'pattern' => '/.../',
'message' => _(...)
]
],
[
'name' => 'Zend\Validator\Db\NoRecordExists',
'options' => [
'table' => 'buz',
'field' => 'foo',
'adapter' => $this->dbAdapter
]
]
]
],
...
];
}
}
现在我想使用相同的表单来更新条目,当然也无法获得验证的表单。所以我需要根据字段NoRecordExists
对此字段进行id
验证。如果设置了id
(这意味着它正在更新,而不是创建),则应该应用所有验证器(例如这里的Regex
),但不应该应用。怎么做?
答案
你可以看看Callback验证器。此验证器将允许您访问表单上下文,以便您获取其他字段的值。使用NoRecordExists
验证器中的Callback
验证器使其依赖。像这样的东西。我没有对此进行测试,但你会明白这一点。
'foo' => [
'required' => true,
'validators' => [
[
'name' => 'Callback',
'options' => [
'callback' => function($value, $context = []) {
if (empty($context['id'])) {
return $this->noRecordExistsValidator->isValid($value);
}
return true;
},
],
]
]
]
你需要注入NoRecordExistsValidator
作为这个表单类的依赖项,或者更好的是创建一个单独的InputFilter
和相应的工厂,完全设置InputFilter
并将该实例注入Fieldset
对象。
以上是关于如何使用ZF2中的数组表单设置使字段验证依赖于另一个字段?的主要内容,如果未能解决你的问题,请参考以下文章
datagridviewcombobox columns 依赖于另一列