我的实体中有一个回调方法
@Assert\Callback(methods={"isStudentsOK"})
....
public function isStudentsOK(ExecutionContext $context)
{
if ( $this->students->isEmpty())
$context->addViolationAtSubPath('students', 'Missing students informations', array(), null);
}
我想在我的模板中翻译 le 消息。
{{ form_errors(form.student)|trans }}
不起作用...我有这个
<span class="help-inline">Missing students informations</span>
这是一个错误吗?我能怎么做 ?
编辑
我自己找到了回复:
我已经安装了一个 BootstrapBundle 并{% block form_errors %}
显示在一个跨度内
我已经覆盖了form_div_layout.html.twig
模板。