thymeleaf模板th:href⽤法使⽤ <a th:href="@{/product/add}" target="_blank">产品</a>
可以得到 <a th:href="/product/add" target="_blank">产品</a>
使⽤ <a th:href="@{/product/show(skuid=${product.id})}" target="_blank">产品</a>
可以得到 <a th:href="/product/show?skuid=12" target="_blank">产品</a>
使⽤ <a th:href="@{'/product/show/'+${product.id}}" target="_blank">产品</a>
可以得到 <a th:href="/product/show/12" target="_blank">产品</a>
>thymeleaf用法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。