如何显示百里香中元素列表中的一个元素?

时间:2019-08-20 05:55:48

标签: spring-boot thymeleaf

百里香叶

<span class="list-img" th:each="hotelFile, itrStat:${hotelFileList}" th:if="(${hotelFile.hotel.id} == ${hotels.id})"><img th:src="@{'/hotelImage/'+${hotelFile.index[0]}" alt=""/>
                                                    </span>

我有一个文件列表。我只想显示一个包含index [0]的文件。我试过但显示所有文件。我将如何做,只有一个图像文件将显示。实际上将显示index [0]图片文件。

1 个答案:

答案 0 :(得分:0)

从后端发送您要显示的文件将是一种更准确的方法。

其他方式;

<div th:each="hotelFile, iterStat : ${hotelFileList}">
<div th:if="${hotelFile.hotel.id} == ${hotels.id} && ${iterStat.index}==0">
<span class="list-img"> <img th:src="@{'/hotelImage/'+${hotelFile}" alt=""/>
</div>
</div>

据我了解,这可以正常工作,需要尝试代码。