忽略 YML 验证文件
2022-08-31 00:30:43
我是Symfony 2 Web框架的新手,并且正在努力完成一个非常基本的验证任务。我有一个实体模型,它有一个成员,我用它来构建指向帖子的链接。在我定义并希望将此约束也作为验证器包括在内。Post
slug
Post.orm.yml
unique: true
我创建了一个文件:validation.yml
# src/OwnBundles/BlogpostBundle/Resources/config/validation.yml
OwnBundles\BlogpostBundle\Entity\Post:
properties:
slug:
- NotBlank: ~
constraints:
- Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity: slug
我的控制器中的创建函数非常简单:
public function addAction(Request $request)
{
$post = new Post();
$form = $this->createForm(new PostType(), $post);
if($request->getMethod() == 'POST')
{
$form->bind($request);
if($form->isValid())
{
$em = $this->getDoctrine()->getManager();
$em->persist($post);
$em->flush();
return $this->redirect(
$this->generateUrl('own_bundles_blogpost_homepage')
);
}
}
return $this->render(
'OwnBundlesBlogpostBundle:Default:add.html.twig',
array(
'title' => 'Add new blogpost',
'form' => $form->createView(),
)
);
}
基本页面流工作正常,我可以添加帖子并查看它们,但是如果我复制帖子标题来测试我的验证,它会引发异常:.我已经浏览文档很长一段时间了,但我无法找出为什么我的回报 。SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'duplicate-slug' for key 'UNIQ_FAB8C3B3989D9B62'
$form->isValid()
true