我按照 Symfony2 食谱中的这个秘籍中的步骤创建了一个自定义电话约束。
约束类:
namespace Foo\Bundle\StackBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class Phone extends Constraint
{
public $message = 'The Phone contains an illegal character';
}
验证器类:
namespace Foo\Bundle\StackBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* @Annotation
*/
class PhoneValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint)
{
$length = strlen($value);
if (is_null($value)) {
return;
}
if ( $length > 14 || ! preg_match("/\([1-9]{2}\) [0-9]{4}-[0-9]{4}/", $value)) {
$this->context->addViolation($constraint->message, array(), $value);
}
}
}
这个验证器工作正常,但是我想使用Symfony2 提供的Regex 字符串约束。
我试图在约束类中实现这一点:
namespace Foo\Bundle\StackBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @Annotation
*/
class Phone extends Constraint
{
public $message = 'The Phone contains an illegal character';
public static function loadValidatorMetadata(ClassMetadata $metadata)
{
$metadata->addPropertyConstraint('description', new Assert\Regex(array(
'pattern' => '/\([1-9]{2}\) [0-9]{4}-[0-9]{4}/'
)));
}
}
但它给了我一个致命的错误,要求我实现 validate 方法:
致命错误:类 Foo\Bundle\StackBundle\Validator\Constraints\CepValidator 包含 1 个抽象方法,因此必须声明为抽象方法或实现其余方法(Symfony\Component\Validator\ConstraintValidatorInterface::validate)
但是 validate 方法已经在 ConstraintValidator 类中实现了(虽然如果实现得当,我认为 loadValidatorMetadata 中指示的模式应该足够了)。
关于如何实现这一目标的任何建议?
更新:
似乎一切正常,为了使 Regex 约束工作,在约束类中设置模式后,验证方法可以在验证器类中声明为空,如下所示:
namespace Foo\Bundle\StackBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
/**
* @Annotation
*/
class PhoneValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint)
{
}
}