如何在thymeleaf和freemarker的url中绑定传递的参数
Posted chenyameng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在thymeleaf和freemarker的url中绑定传递的参数相关的知识,希望对你有一定的参考价值。
如何在thymeleaf和freemarker的url中绑定传递的参数
freemarker
<a href="/user/getUserInfo?userId=${user.userId}" style="color: #878787">查看</a>
thymeleaf
<a th:href="@{/admin/download/{id}(id=${file.id})}" class="ui mini blue basic button">下载</a>
以上是关于如何在thymeleaf和freemarker的url中绑定传递的参数的主要内容,如果未能解决你的问题,请参考以下文章
springboot中模板 freemark,thymeleaf,jsp
通过 Thymeleaf 实现字段验证(从 Freemarker 迁移到 Thymeleaf)