onclick thymeleaf动态url参数

时间:2017-11-27 20:29:35

标签: spring-mvc thymeleaf

我是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>

感谢您的帮助和耐心

1 个答案:

答案 0 :(得分:3)

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

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})}'|"