我正在使用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它是一个自定义类型,我与Data Transformer一起将Order映射到它的主键,以便在给定订单集的表视图中创建通知。
最后,我有一个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子类间接调用)
答案 0 :(得分:0)
找出问题所在。表单实际上无效,但错误未显示。我必须为每个表单字段包含以下选项:
$builder->add('message', null, array('error_bubbling' => true))
错误现在可以正确显示。