带有URL的Symfony 4表单复选框,标签中的标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有URL的Symfony 4表单复选框,标签中的标签相关的知识,希望对你有一定的参考价值。

这应该很简单,但是我还是不明白...

如何显示带有包含同一行中URL的标签的表单!

enter image description here

使用类似的方法,我在复选框下得到了标签...

{% set terms_link %}<a title="{% trans %}Read the General Terms and Conditions{% endtrans %}"
                       href="{{ path('homepage') }}">{% trans %}General Terms and Conditions{% endtrans %}</a>{% endset %}
{% set general_terms_and_conditions %}{{ 'I have read and accept the %general_terms_and_conditions%.'|trans({ '%general_terms_and_conditions%': terms_link })|raw }}{% endset %}
<div class="form-group">
    <label for="{{ form.agreeTerms.vars.id }}">{{ general_terms_and_conditions|raw }}</label>
</div>
答案

只需将两个元素都包装到div元素中,然后将样式设置为display:flex,请参见此处的工作方式:https://css-tricks.com/snippets/css/a-guide-to-flexbox/

以上是关于带有URL的Symfony 4表单复选框,标签中的标签的主要内容,如果未能解决你的问题,请参考以下文章

Symfony 表单 - 内部带有复选框的集合类型

Symfony buildForm:将复选框输入放在标签标签内

带有两个提交按钮的 Symfony 2 表单

在 ChoiceType Symfony 5 中使用图像而不是文本标签

来自所需小部件的带有星星的 symfony 表单标签

symfony2 中的复选框验证