如果我将其保留-6ren">
gpt4 book ai didi

java - thymeleaf + i18n - 如何连接来自 Controller 和 i18n 的值?

转载 作者:行者123 更新时间:2023-11-30 08:36:13 26 4
gpt4 key购买 nike

我有一个表字段,它应该显示持久 boolean 值的国际化值。

在我的 i18n 文件中,我有以下条目:

gen.true=<value for true>
gen.false=<value for false>

在 table 上,我有:

<td style="text-align: center" th:text="#{gen.${pojo.<value>}}">

如果我将其保留为:

<td style="text-align: center" th:text="${pojo.<value>}">

我只得到 truefalse , 没有国际化。

代替

的当前显示值
??gen.pojo.recurrent??

我希望它显示 <value for true><value for false> .

怎么做?

最佳答案

<td style="text-align: center" th:text="#{${'gen.' + pojo.recurrent}}">xxx</td>

或使用预处理 http://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#preprocessing

<td style="text-align: center" th:text="#{gen.__${pojo.recurrent}__}">xxx</td>

关于java - thymeleaf + i18n - 如何连接来自 Controller 和 i18n 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37866932/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com