无法从模型属性的 href 中获取 thymeleaf 参数
Can't get thymeleaf parameter in href from model attribute
我是 thymeleaf 的新手。
我无法在 th:href 中获取 systemId,但我可以在
中获取
有什么问题吗?请帮助
My code
Result
只需替换此代码
https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html 阅读这里 4.8
链接的正确语法应该是:
1: th:href="@{/{id3}/releases/{id3}(id3=${release.releaseId})}"
或
1: th:href="@{/{id3}/releases/{id2}(id3=${release.releaseId}, id2=${release.releaseId})}"
(如果你真的想对同一个值使用 2 个不同的变量。)
2: th:href="@{/releases/new/{id}(id=${systemId})}"
我是 thymeleaf 的新手。 我无法在 th:href 中获取 systemId,但我可以在
中获取
有什么问题吗?请帮助
My code
Result
只需替换此代码
https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html 阅读这里 4.8
链接的正确语法应该是:
1: th:href="@{/{id3}/releases/{id3}(id3=${release.releaseId})}"
或
1: th:href="@{/{id3}/releases/{id2}(id3=${release.releaseId}, id2=${release.releaseId})}"
(如果你真的想对同一个值使用 2 个不同的变量。)
2: th:href="@{/releases/new/{id}(id=${systemId})}"