我有以下用 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。
有谁知道这个问题的解决方案?