表单发生错误,Thymeleaf表单的Radio 如何重新绑定?
实体类User的status属性是布尔类型的,
private Boolean status;
form表单中的radio group
<div class="control-group">
<label class="control-label">状态</label>
<div class="controls">
<label class="radio inline"><input type="radio" name="status" value="1" checked="checked" th:checked="${user.status}" />启用</label>
<label class="radio inline"><input type="radio" name="status" value="0" th:checked="${user.status}"/>锁定</label>
</div>
</div>
当表单发生错误的时候,返回到表单页面,其他的文本输入框都能正常的绑定数据,但是radio 是不会选中我提交的时候的那个值的,请问这怎么解决?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论