我正在尝试通过@Assert \ Expression(http://symfony.com/doc/2.4/reference/constraints/Expression.html)验证字段级别的属性。
它使用以下代码在类级别工作:
/**
* Foo
*
* @ORM\Table(name="foo")
* @ORM\HasLifecycleCallbacks()
* @UniqueEntity("slug")
* @Assert\Expression(
* "this.getPriceFor2PaxStandard() != null or (this.getPriceFor2PaxStandard() == null and !this.isPriceForAccLevelRequired('standard'))",
* message="The price for 2 pax standard is required",
* groups={"agency_tripEdit_finalsave"}
* )
*
*/
class Foo implements ISpellcheckerLocaleProvider, ProcessStatusAware, DataTransformer
{
但如果我在属性级别使用相同的代码(应该没问题)不起作用:
/**
* @var decimal
*
* @ORM\Column(name="price_for_2_pax_standard", type="decimal", precision=16, scale=4, nullable=true)
* @Assert\Expression(
* "this.getPriceFor2PaxStandard() != null or (this.getPriceFor2PaxStandard() == null and !this.isPriceForAccLevelRequired('standard'))",
* message="The price for 2 pax standard is required",
* groups={"agency_tripEdit_finalsave"}
* )
*/
private $priceFor2PaxStandard;
此外,如果我在使用asseriont作为属性级别时使用value
而不是this.getPriceFor2PaxStandard()
,则无效。
任何提示都将受到赞赏: - )
答案 0 :(得分:3)
这是symfony中的一个错误。如果查看ExpressionValidator的代码,您可以看到它跳过验证值是null还是空字符串。这对于其他一些约束很有用,但在ExpressionValidator中却毫无意义。我刚刚提交了pull request来修复它。目前最简单的方法是交换回调验证器。
<?php
namespace Symfony\Component\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
class ExpressionValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint)
{
if (!$constraint instanceof Expression) {
throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\Expression');
}
if (null === $value || '' === $value) {
return;
}
//...
}
//...
}