我正在使用文档中定义的回调验证约束,如下所示:-
/**
* GD\AdminBundle\Entity\Offer
*
* @ORM\Table(name="offers")
* @ORM\Entity(repositoryClass="GD\AdminBundle\Repository\OfferRepository")
* @Assert\Callback(methods={"isDateValid"})
*/
class Offer
{
...
public function isDateValid(ExecutionContext $context)
{
// This code block gets executed but $this->getEndDate() is NULL
if( $this->getEndDate()->getTimestamp() < $this->getStartDate()->getTimestamp() ){
$context->addViolation('End Date cannot be less than Start Date.', array(), null);
}
}
但是,如果我做一个 var_dump 和测试,我发现那$this->getEndDate()
是NULL
我正在使用 SonataAdminBundle 从管理员创建新的 Offer 实例。 我在这里做错了什么?