我是SpringMVC的初学者,我犯了一些错误…所以我想用按钮和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})}'|"