gpt4 book ai didi

javascript - thymeleaf 表达式

转载 作者:行者123 更新时间:2023-12-03 02:37:00 25 4
gpt4 key购买 nike

我在 Thymeleaf 页面中有这段代码,我想在其中获得类似 selectAuthorizedDriver1,selectAuthorizedDriver2,... 的内容

我尝试过

<tr th:each="item: ${devices}" >
<select th:id="selectAuthorizedDriver${item.id}" >

<tr th:each="item: ${devices}" >
<select id="selectAuthorizedDriver${item.id}" >

还有

<tr th:each="item: ${devices}" >
<select th:id="selectAuthorizedDriver${id}(id=${item.id})" >

但是我得到了错误:

 Could not parse as expression: "selectAuthorizedDriver${item.id}" 

或字面上的“selectAuthorizedDriver${item.id}”

最佳答案

对于只需要字符串的表达式,您可以将它们附加在一起。在您的示例中:

<tr th:each="item: ${devices}" >
<select th:id="${'selectAuthorizedDriver' + item.id}">

您还可以使用 preprocessing 来完成此操作,但在本例中不需要。 (如果您需要编写 th:field 表达式,则必须这样做)。

<tr th:each="item: ${devices}" >
<select th:id="${'selectAuthorizedDriver__${item.id}__'}">

关于javascript - thymeleaf 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48499509/

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