thymeleaf使用动态参数/元素生成REST URL

时间:2014-12-05 20:26:38

标签: 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/4/edit

我怎么能做到这一点?请帮忙。

1 个答案:

答案 0 :(得分:4)

您需要的内容Preprocessing,只需点击链接即可!

在你的情况下,你应该这样做:

<a th:href="@{customer/__${c.id}__/edit}">Edit</a>