如何将消息资源ID传递给百里香片段

时间:2018-09-25 19:31:27

标签: thymeleaf

如何将消息资源ID传递给百里香片段

例如

<head th:replace="fragments/head-import :: head-shared('#{view.index.title}')"></head>

其中 view.index.title 是消息资源文件(Spring MVC)中的ID

1 个答案:

答案 0 :(得分:1)

如果仅通过'view.index.title',则有两种显示方式。例如,如果您使用变量名title

<span th:text="#{${title}}" />

<span th:text="${#messages.msg(title)}" />