我正在使用 Symfony 2 框架构建一个 Web 应用程序,其中我有一个 Notification 类,由 OrderCloseNotification 和 OrderDelayNotification 子类化,使用单表继承,如 Doctrine 2 文档中所述,用于稍微不同的目的(正如您可以通过类名猜测的那样)。
我需要以不同的方式验证表单提交,这导致我为它们中的每一个创建自定义类型和控制器。我将使用 OrderDelayNotification,因为它是需要验证的通知类型。这是我的设置:
超级班:
# src/MyNamespace/MyBundle/Entity/Noticication.php
namespace MyNamespace\MyBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
class Notification
{
# common attributes, getters and setters
}
子类:
# src/MyNamespace/MyBundle/Entity/OrderDelayNotification.php
namespace MyNamespace\MyBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
class OrderDelayNotification extends Notification
{
private $message;
# getters and setters
}
子类控制器:
namespace MyNamespace\MyBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
use MyNamespace\MyBundle\Entity\OrderDelayNotification;
use MyNamespace\MyBundle\Form\Type\OrderDelayNotificationType;
class OrderDelayNotificationController extends Controller
{
public function createAction() {
$entity = new OrderDelayNotification();
$request = $this->getRequest();
$form = $this->createForm(new OrderDelayNotificationType(), $entity);
$form->bindRequest($request);
if ($form->isValid()) {
//$em = $this->getDoctrine()->getEntityManager();
//$em->persist($entity);
//$em->flush();
} else {
}
// I'm rendering javascript that gets eval'ed on the client-side. At the moment, the js file is only displaying the errors for validation purposes
if ($request->isXmlHttpRequest()) {
return $this->render('LfmCorporateDashboardBundle:Notification:new.js.twig', array('form' => $form->createView()));
} else {
return $this->redirect($this->generateUrl('orders_list'));
}
}
}
我的自定义表单类型
# src/MyNamespace/MyBundle/Form/Type/OrderDelayNotificationType.php
class OrderDelayNotificationType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('message')
->add('will_finish_at', 'date')
->add('order', 'order_selector'); //*1
return $builder;
}
public function getName()
{
return 'orderDelayNotification';
}
}
*1 : order_selector 它是一种自定义类型,我与数据转换器一起将订单映射到它的主键,以便在给定订单集的表视图中创建通知。
最后,我有一个 validation.yml(我对每个配置都使用 YAML)
# src/MyNamespace/MyBundle/Resources/config.validation.yml
MyNamespace\MyBundle\Entity\OrderDelayNotification:
properties:
message:
- NotBlank: ~
这里发生的情况是:当我尝试通过 AJAX 创建 OrderDelayNotification(尚未尝试过 html 请求)时,即使消息为空白,订单也始终被视为有效。我也试图强加一个最小长度,但没有运气。我阅读了 symfony 的文档,他们说验证是默认启用的。还尝试将validation.yml 上的属性名称更改为无效名称,Symfony 抱怨它意味着文件已加载,但验证没有发生。
有人对此有任何指示吗?
编辑: ajax 调用是这样的:
$('form[data-remote="true"]').submit(function(event){
$.ajax({
type: $(this).attr('method'),
url: $(this).attr('action'),
data: $(this).serialize(),
success: function(response) {
eval(response)
}
});
event.preventDefault();
});
产生:
# src/MyNamespace/MyBundle/Resources/views/Notification/new.js.twig
alert("{{ form_errors(form) }}");
我可以看到 Symfony 的验证器服务没有抛出任何错误(根据 Symfony 的文档,由我的 AbstractType 子类间接调用)