java – Velocity模板:如何将#springMessage()的结果放入速度变量中
作者:互联网
我有一个来自这个声明的值:
#springMessage("count.french")
我需要附加到另一个字符串
#set ( $theCount = '5467 ' )
那么基本上我需要这样做
#set ( $countText = $theCount+#springMessage("count.french") )
但它不喜欢那样.任何人都知道如何做到这一点?
解决方法:
创建临时变量应该像下面这样简单(注意引号):
#set ( $test = "#springMessage( $key )" )
然后,根据你的需要使用它,例如.将它连接到另一个字符串.
标签:java,spring,template-engine,velocity 来源: https://codeday.me/bug/20190826/1732774.html