前端笔记-thymeleaf获取及回显input标签type="radio"
程序员文章站
2023-12-27 09:14:39
...
如下演示:
回显:
前端代码如下:
<div class="form-group">
<label>性别</label><br/>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sex" value="1"
th:checked="${people!=null}?${people.sex==1}" />
<label class="form-check-label">男</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sex" value="0"
th:checked="${people!=null}?${people.sex==0}" />
<label class="form-check-label">女</label>
</div>
</div>
如上可以知道这两个input name都是一样的 一个value是1,一个是0,他们的type都是radio,
回显通过checked来判断
后端获取只要获取sex的即可:
@RequestPara("sex") Integer sex。
这里直接使用Integer进行接收即可。