<t t-set="is_employee" t-value="1"/>
<div class="radio col-md-3">
<label>
<input type="checkbox" checked="is_employee" id="is_employee" t-att-value="is_employee"/>
Is Employee?
<t t-esc="is_employee"/>
</label>
</div>
<t t-esc="is_employee"/>
始终打印1
。 is_employee
变量值在复选框选中/取消选中状态不变。
有什么想法吗?