Java春季百里香展示图片

时间:2019-12-16 20:55:38

标签: java spring thymeleaf

我想在conhtml中显示html页面中的图片,并带有数据库中图片的来源和名称 示例:

<tr th:each="e:${PageEtudiants.content}">
<td> <img class="img img-circle" width="50" height="50" `th:src="@{/Upload/(${e.photo})}"/></td>
</tr>`

谢谢

1 个答案:

答案 0 :(得分:0)

请尝试以下代码

<img class="img img-circle" width="50" height="50" th:src="@{'/Upload/'+${e.photo()}}"/>