0
私はSpring MVCの初心者ですが、私はいくつかの間違いを犯しています...私はボタンとThymeleafで動的URLを偽造したいのですが、うまくいきません。私はエスケープ引用符または同様の、$ {key}の評価では正しくないと思いますか?onclick thymeleaf動的URLパラメータ
<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>
一般的にはあなたの助けと忍耐
ありがとう、それはうまく動作し、今理解しています –