标签: spring rest url thymeleaf
我想用thymeleaf创建REST url。我有这样的事情:
<a th:href="@{customer/(${c.id})/edit}">Edit</a>
输出是: http://localhost:8080/app/customer/($%7Bs.id%7D)/edit
http://localhost:8080/app/customer/($%7Bs.id%7D)/edit
但我想得到:http://localhost:8080/app/customer/4/edit
http://localhost:8080/app/customer/4/edit
我怎么能做到这一点?请帮忙。
答案 0 :(得分:4)
您需要的内容Preprocessing,只需点击链接即可!
在你的情况下,你应该这样做:
<a th:href="@{customer/__${c.id}__/edit}">Edit</a>