标签: spring-boot thymeleaf
我使用的是thymleaf框架,目前卡在一种情况下,如果用户未选择表单上的复选框,则想发送NULL值。
<input type="checkbox" id="user" th:field="*{someObject.someVariable}">
模型包含的数据类型为Boolean
Boolean
问题是当用户提交表单thymleaf时,该值自动发送为FALSE。有没有一种方法可以对此进行自定义,如果什么也没选择,我可以传递NULL值?