作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在一个应用程序中,我正在使用 spring + thymeleaf。我想获取包含某些文件的用户代理。
<%
String browser = request.getHeader("User-Agent")
%>
我需要在 thymeleaf 页面中完成这项工作。我该怎么做。任何帮助将不胜感激
最佳答案
SHANib 的回答对我不起作用。 ServletRequest
上的 getRequest
没有参数,至少在我的版本中是这样。然而,
<span th:text="${#httpServletRequest.getHeader('User-Agent')}">Agent</span>
工作得很好。
关于thymeleaf - 如何从 thymeleaf html 页面获取用户代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22604051/
我是一名优秀的程序员,十分优秀!