我再次提出一个简单的问题。
是否有现有的zend验证器可以为用户可以选择的框设置最大值。 我希望他们选择不超过3个盒子。
我搜索了网页,我发现的唯一一件事是在表单元素中的isValid函数中设置错误。但后来我遇到了问题,每个选中的框都显示错误。 (所以4次或更多次)或者也许有人知道如何处理这个问题?如果我只能显示一次此错误,我的问题也将得到解决。
感谢您的帮助。
答案 0 :(得分:3)
您可以使用我的验证器,它会检查值的数量。我完全用于相同的目的 - 在多选中验证所选值的最大和最小数量:
<?php
class App_Validate_ValuesNumber extends Zend_Validate_Abstract
{
const TOO_LESS = 'tooLess';
const TOO_MUCH = 'tooMuch';
protected $_type = null;
protected $_val = null;
/**
* @var array
*/
protected $_messageTemplates = array(
self::TOO_LESS => "At least %num% values required",
self::TOO_MUCH => "Not more then %num% required",
);
/**
* @var array
*/
protected $_messageVariables = array(
'num' => '_val'
);
/**
* Constructor for the integer validator
*
* @param string $type Comparison type, that should be used
* TOO_LESS means that value should be greater then items number
* TOO_MUCH means opposite
* @param int $val Value to compare items number with
*/
public function __construct($type, $val)
{
$this->_type = $type;
$this->_val = $val;
}
/**
* Defined by Zend_Validate_Interface
*
* Returns true if and only if $value is a valid integer
*
* @param string|integer $value
* @return boolean
*/
public function isValid($value)
{
// Value shoul dbe greated
if ($this->_type == self::TOO_LESS) {
if (count($value) < $this->_val) {
$this->_error(self::TOO_LESS);
return false;
}
}
// Value should be less
if ($this->_type == self::TOO_MUCH) {
if (count($value) > $this->_val) {
$this->_error(self::TOO_MUCH);
return false;
}
}
return true;
}
}
答案 1 :(得分:1)
我今天就打了这个。这是一个zend bug。 http://framework.zend.com/issues/browse/ZF-11667。在这个问题上有一个解决方案的差异,但直到1.12出来它才会出现。我不想等,所以我修补了Zend_Form_Element。修复效果很好。在修复之前,对于检查的每个框,我在MultiChecks上的错误消息重复一次。