gpt4 book ai didi

spring-mvc - onclick thymeleaf动态url参数

转载 作者:行者123 更新时间:2023-12-04 16:46:49 25 4
gpt4 key购买 nike

我是 Spring MVC 的初学者,我犯了一些错误……所以我想用按钮和 Thymeleaf 伪造一个动态 URL,但它不起作用。我考虑转义引号或类似的,评估中的 ${key} 不正确?

<tr th:each="key: ${serverBean.getServerB().keySet()}">
<td>
<span th:text="${serverBean.getServerB().get(key)}" />
</td>
<td align="center">
<span th:text="${key}" />
</td>
<td th:if="${protoStatusBean.getStatus(key)}" bgcolor="lime" />
<td th:unless="${protoStatusBean.getStatus(key)}" bgcolor="red"/>
<td>
<button th:onclick="window.location.href='/update?server=${key}'">
<img src="./images/wrench.png" height="15" width="15">
</button>
</td>
</tr>

感谢您的帮助和耐心

最佳答案

通常,您必须用单引号将文本文字括起来。为了使您的示例正常工作,它应该如下所示:

th:onclick="'window.location.href=\'/update?server=' + ${key} + '\''"

话虽这么说,但根据您认为最好的方式,还有多种其他方法可以使字符串连接起作用。

th:onclick="|window.location.href='/update?server=${key}'|"
th:onclick="${'window.location.href=''/update?server=' + key + ''''}"
th:onclick="|window.location.href='@{/update(server=${key})}'|"

关于spring-mvc - onclick thymeleaf动态url参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47519295/

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