作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用指南 http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html我正在尝试自定义错误消息,但我有一个问题:变量 errors
未定义,因为我们不验证实体并且我们不调用 $this->get('validator')->validate($entity)
.
{% block field_errors %}
{% spaceless %}
{# errors is undefined here #}
{% endspaceless %}
{% endblock field_errors %}
public function uploadAction()
{
$document = new Document();
$form = $this->createFormBuilder($document)
->add('name')
->add('file')
->getForm()
;
if ($this->getRequest()->getMethod() === 'POST') {
$form->bindRequest($this->getRequest());
if ($form->isValid()) {
$em = $this->getDoctrine()->getEntityManager();
$em->persist($document);
$em->flush();
$this->redirect($this->generateUrl('...'));
}
}
// Variable 'errors' is not assigned
return array('form' => $form->createView());
}
最佳答案
不确定我是否理解。如果您遵循示例,则 $document 上有验证规则,将由 $form->isValid() 进行测试。 {{ form_errors(form) }} 应该输出任何错误。
如果它只是一个模板自定义问题,那么您需要在尝试处理它们之前测试是否存在错误:
{% block field_errors %}
{% spaceless %}
{% if errors|length > 0 %}
<span style="color:red">
{% for error in errors %}
{{ error.messageTemplate|trans(error.messageParameters, 'validators') }}<br />
{% endfor %}
{% endif %}
{% endspaceless %}
{% endblock field_errors %}
关于symfony - 文件上传中的错误消息自定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9895115/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!