java—在thymeleaf中输出一个大表

kupeojn6  于 2021-07-03  发布在  Java
关注(0)|答案(0)|浏览(163)

spring boot应用程序。我想将一个包含book类数据的表输出到html。控制器:

@GetMapping("/books")
public String showBooks(HttpServletRequest request, Model model) {
  allBooks = bookService.getAll();
  model.addAttribute("allBooks", allBooks);
  return "books";
}

我用百里香叶。下面是一段html代码:

<table border="1" style="width:250px">
  <tr>
    <th>No</th>
    <th>Name</th>
  </tr>
  <tr th:each="allBooks, state : ${allBooks}">
    <td th:utext="${state.count}">No</td>
    <td th:text="${allBooks.name}">A Book'</td>
  </tr>
</table>

图书班有100多个条目。如何正确显示它们,使它们每页显示10个条目?thymeleaf能做到吗?或者我需要使用javascript?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题