为什么我的 th:each 在我的 div 中不起作用?百里香叶

Why does my th:each not work in my div? Thymleaf

我正在尝试 th:text 在我的 div 中,但它似乎不起作用

我试着用 table 来做,我得到了我需要的数据,但是当我把它放在 div 中时它不起作用

     <div class="info"  data-th-each="shoes: ${shoesList}">
          <p th:text="$(shoes.name)"></p>
          <p th:text="$(shoes.description)"></p>
          <p th:text="$(shoes.price)"></p>          
      </div>

这行得通

<table>

      <tr data-th-each="shoes : ${shoesList}">    
        <td th:text="${shoes.name}"></td>
        <td th:text="${shoes.description}"></td>
        <td th:text="${shoes.price}"></td>
      </tr>        
  
</table>

我想,会是这样的 (将 $(shoes.name) 更正为 ${shoes.name} )

<div class="info"  th:each="shoes : ${shoesList}">
      <p th:text="${shoes.name}"></p>
      <p th:text="${shoes.description}"></p>
      <p th:text="${shoes.price}"></p>          
  </div>

请访问此link Iteration thymeleaf