我有来自数据库(mysql)的表格和显示数据。我用百里香叶。所有字段都可以,但 sb.cover 不显示 jpg(我的数据库中的 blob 列)。您有任何想法如何使用百里香将 jpg 放入网页中吗?谢谢
<tr th:each="sb, poz : ${product}">
<td th:text="${poz.count}">1</td>
<td th:icon="${sb.cover}"></td>
<td th:text="${sb.title}"></td>
<td th:text="${sb.price}"></td>
<td ><b><a th:href="@{/details}">DETAILS</a></b></td>
<td ><b><a th:href="@{/cart}">ADD TO CART</a></b></td>
</tr>