速度模板:如何将 #springMessage() 的结果放入速度变量中

发布于 2024-12-13 12:18:15 字数 294 浏览 1 评论 0原文

我有一个来自这个语句的值:

#springMessage("count.french")

我需要附加到另一个字符串,就像

#set ( $theCount = '5467 ' )

本质上我需要这样做

#set ( $countText = $theCount+#springMessage("count.french") )

,但它不喜欢那样。有人知道如何做到这一点吗?

I have a value that comes out of this statement :

#springMessage("count.french")

That I need to append to another string like

#set ( $theCount = '5467 ' )

then essentially I need to do this

#set ( $countText = $theCount+#springMessage("count.french") )

but it doesn't like that. Anyone have any idea how to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你怎么敢 2024-12-20 12:18:15

创建临时变量应该像下面一样简单(注意引号):

#set ( $test = "#springMessage( $key )" )

然后,根据需要使用它,例如。将它连接到另一个字符串。

Creating a temp variable should be as simple as the following (note the quotes):

#set ( $test = "#springMessage( $key )" )

Then, use this however you want, ex. concat it to another string.

难如初 2024-12-20 12:18:15

请尝试以下操作:

#set($dynamicProp = '#set( $countText = $theCount ' + '#springMessage(count.french' + ' )')
#evaluate($dynamicProp)

Try the following:

#set($dynamicProp = '#set( $countText = $theCount ' + '#springMessage(count.french' + ' )')
#evaluate($dynamicProp)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文