我想在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>`
谢谢
答案 0 :(得分:0)
请尝试以下代码
<img class="img img-circle" width="50" height="50" th:src="@{'/Upload/'+${e.photo()}}"/>