<tbody> <!--/*@thymesVar id="title" type="com"*/--> <tr th:if="${title}"> <td colspan="3">没有用户数据</td> </tr> <tr th:text="${title}"> </tr> <!--/*@thymesVar id="userModel" type="com.waylau.spring.boot.blog.controller.UserController"*/--> <tr th:each=" user : ${userModel.userList}"> <td th:text="${user.id}"></td> <td th:text="${user.email}"></td> <td th:text="${user.name}"> </tr> </tbody>
</thead>
添加了注释就可以无视红线