split string 为 array 后 each
html
<th:block
th:if="${column.images}"
th:with="homeSwiperNews=${column.images.split(',')}"
>
<div th:each="item : ${homeSwiperNews}" class="slick-item">
<img th:src="${item}" />
</div>
</th:block>