带有Thymeleaf的复选框 - SpringInputCheckboxFieldTagProcessor

时间:2017-11-25 12:40:36

标签: spring-mvc checkbox thymeleaf

我正在尝试在表单中添加一个复选框。在我创建用户时,复选框工作正常。但是,在我编辑用户时,我收到此错误:

Error during execution of processor 'org.thymeleaf.spring5.processor.SpringInputCheckboxFieldTagProcessor'

以下是代码: (错误在<input type="checkbox" th:field="*{isEnabled}" checked/>

<div class="form-group row">
    <label class="col-sm-2 form-control-label">Enable User</label>
    <div class="col-sm-10">
        <input type="checkbox" th:field="*{isEnabled}" checked/>
    </div>
    <label class="col-sm-2 form-control-label">Lock User</label>
    <div class="col-sm-10">
        <input type="checkbox" th:field="*{isLocked}" checked/>
    </div>
</div>

这里有什么问题?

0 个答案:

没有答案