在ThymeLeaf Tutorial的“设置特定属性的值”中,它们都定义了href
属性,并使用th:href
进行了设置。
<li><a href="product/list.html" th:href="@{/product/list}">Product List</a></li>
是否有理由加入href
标记,因为它仍然会设置?如果有人想要页面的静态视图(即没有渲染器),他们是否会设置这些值?
答案 0 :(得分:1)
如果您要问的是如何使用href添加attr:
<li>
<a href="product/list.html" th:href="@{product/list(attrName=${attrValue})}">
Product List
</a>
</li>
如果您要问的是如何重定向到静态页面:
// *** link to another page ***
<a th:href="@{staticPage}"> static page</a>
// *** Spring boot Controller ***
@RequestMapping(value="/staticPage", method=RequestMethod.GET)
public String staticPage(Model model) {
return "staticPage";
}