gpt4 book ai didi

split - 如何在 Thymeleaf 中拆分字符串

转载 作者:行者123 更新时间:2023-12-04 11:03:16 27 4
gpt4 key购买 nike

我有像 wange/25011.jpg|wange/25011-1.jpg 这样的图像名称或 null,我想将它们拆分为 wange/25011.jpgwange/25011-1.jpg ,如果为空,则不拆分。我尝试了如下代码,但没有工作......

<td th:if="${brickset.imageNames} != null"  th:each="image : ${#strings.arraySplit(brickset.imageNames, '|')}">
<a href="#" th:href="${imageBaseUrl + image}">
<img src="#" th:src="${imageBaseUrl + image}" height="64"/>
</a>
</td>

最佳答案

这是我自己的答案:

<tbody id="portfolio" class="clear fix">
<tr th:each="brickset : ${bricksets}" th:alt="${brickset.description}">
<td>
<div th:unless="${brickset.imageNames == null}">
<div th:each="image,status : ${#strings.arraySplit(brickset.imageNames, '|')}">
<a href="#" th:href="${imageBaseUrl + image}" th:remove="${image} == null ? tag" th:title="${brickset.brand.name}">
<img src="#" th:src="${imageBaseUrl + image}" height="64" th:remove="${status.index} > 0 ? tag"/>
</a>
</div>
</div>
</td>
</tr>
</tbody>

关于split - 如何在 Thymeleaf 中拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35669169/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com