作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想呈现原始翻译,所以我决定在 Twig 模板中使用“原始”选项。但它不起作用。例子:
{{ form_label(form.sfGuardUserProfile.roules_acceptance) | raw }}
Accept the <a href="url_to_pdf">terms</a>
最佳答案
在这里阅读:http://symfony.com/doc/current/cookbook/form/form_customization.html
如果您的字段名称是 product[name],您可以只为单个字段覆盖标签块:
{% block _product_name_label %}
<label>{{ label|raw }}</label>
{% endblock %}
{% block _product_name_label %}
<label>Accept the <a href="url_to_pdf">terms</a></label>
{% endblock %}
{% form_theme form _self %}
关于forms - Symfony2 form_label 原始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23358889/
我想呈现原始翻译,所以我决定在 Twig 模板中使用“原始”选项。但它不起作用。例子: {{ form_label(form.sfGuardUserProfile.roules_acceptance)
我正在尝试重用这段旧代码来制作一些表格: 在 form.html.twig 中 {{ form_label(form.class.vari
我的问题涉及在表单中应用 Twig 过滤器而不会出现 500 服务器错误。这是代码,位于 View “Room/new.html.twig”中: {{ form_label(form.name) }}
我是一名优秀的程序员,十分优秀!