0

我有以下用 twig 编写的 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 中编写相同的代码部分。但是我遇到了一个问题,我无法弄清楚如何像第一个示例中那样设置“已检查”属性。同样的问题是属性“onclick”中的javascript。

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

4

1 回答 1

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

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

于 2016-04-14T13:14:28.463 回答