如何将消息资源ID传递给百里香片段
例如
<head th:replace="fragments/head-import :: head-shared('#{view.index.title}')"></head>
其中 view.index.title 是消息资源文件(Spring MVC)中的ID
答案 0 :(得分:1)
如果仅通过'view.index.title'
,则有两种显示方式。例如,如果您使用变量名title
:
<span th:text="#{${title}}" />
或
<span th:text="${#messages.msg(title)}" />