3

我想在我的 Thymeleaf 模板中使用 Spring 主题解析器的功能(请参阅:此处)。

Thymeleaf 与 spring:theme JSP 标签的等价物是什么?

请参阅下面的 JSP 代码示例:

<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<html>
   <head>
      <link rel="stylesheet" href="<spring:theme code='styleSheet'/>" type="text/css"/>
   </head>
   <body style="background=<spring:theme code='background'/>">
      ...
   </body>
</html>
4

1 回答 1

4

我认为您提出问题时不是这种情况,但是当前版本的 thymeleaf-spring3(撰写本文时为 2.0.18)作为SpringStandard 方言的一部分具有主题功能,可以使用像这样:

<body th:style="'background-color: ' + ${#themes.code('backgroundColor')}">
于 2013-09-24T19:35:17.047 回答