Symfony Twig + Haml标签属性检查和属性脚本

时间:2016-04-14 12:22:24

标签: javascript twig haml symfony mthaml

我有以下用树枝写的pcode:

<input type="checkbox" name="fc[fully_completed]" id="fully_completed" onclick="this.form.submit();"
            {% if fully_completed is not null %}
                checked="checked"
            {% endif %}

>

我使用mtHamlBundle,我需要在haml中编写相同的代码部分。 但我遇到了一个问题,我无法弄清楚如何设置属性&#34;已检查&#34;如第一个例子。同样的问题是javascript in attribute&#34; onclick&#34;。

有谁知道这个问题的解决方案?

1 个答案:

答案 0 :(得分:0)

%input{ fully_completed ? {checked: "checked"} : {}}

取自https://coderwall.com/p/_jiytg/conditional-html-tag-attribute-in-haml