| 12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- <h1>shouye </h1>
- <h1>开始 展示 数据2222</h1>
- <!--<span th:each="item:${list}"> ${item.title}</span>-->
- <p th:text="${name}">111</p>
- <a href="hello.html">跳转到hello</a>
- <div th:each="item : ${list}">
- <h1 th:text="${{item.type}}"></h1>
- <p><a th:text="${{item.title}}"></a></p>
- </div>
- </body>
- </html>
|