1 在页面上显示的位置,但是我在我写的代码中并没有发现有这个1
在浏览器上直接检查,发现 出现 1 的位置
这一块前端对应的代码
<div class="row">
<div class="col-lg-12">
<table class="table">
<thead>
<tr>
<th>用户Id</th>
<th>用户名</th>
<th>用户密码</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr th:each="user:${userList}">
<td th:text="${user.getId()}"></td>
<td th:text="${user.getName()}"></td>1
<td th:text="${user.getPwd()}"></td>
<td>
<a class="btn btn-primary" th:href="@{'/update/'+${user.getId()}}" >修改</a>
|
<a class="btn btn-success" th:href="@{'/del/'+${user.getId()}}">删除</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>