标签: spring spring-boot thymeleaf
我正在使用Thymeleaf和Spring启动开发一个Web应用程序。我正在使用Fragments和布局;我只需要在标题中打印请求参数。
例如:
Thymeleaf中是否有任何变量可以实现?
谢谢
答案 0 :(得分:7)
查询字符串的路径:
${#request.requestURI}
查询字符串:
${#request.queryString}
获取特定参数(来自查询字符串):
${#request.getParameter('size')}