gpt4 book ai didi

html - thymeleaf : How to get first element of list without iterating?

转载 作者:太空狗 更新时间:2023-10-29 15:28:00 40 4
gpt4 key购买 nike

foo.messageData 是一个列表。 messageData 包含作为字符串的 name

在 thymeleaf html 模板中,我想打印 messageData 的第一个元素的 name 属性的值。

类似于foo.messageData[0].name:

<span th:text="foo.messageData[0].name"></span>

<span th:text="foo.messageData.get(0).name"></span>

不工作。

如何打印这些数据? Thymeleaf 中是否有任何特定的语法?

我知道这个值可以通过使用 th:each 进行迭代来打印;但我不想要这些迭代。

最佳答案

Thymeleaf 表达式是 SpEL。在您的情况下,您可以像下面这样使用它。

<span th:text="${foo.messageData[0].name}"></span>

关于html - thymeleaf : How to get first element of list without iterating?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41567095/

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