当我尝试在我的文本中放入一些动态部分以供<s:text>
Struts 2 中的标记使用时,这些部分被params
我定义的替换。
这是我在我的句子中写句子的方式file.properties
:
my_error=The event {0} doesn't exist
这是我尝试显示它的方式:
<s:text name="my_error">
<s:param>Event01</s:param>
</s:text>
但结果,表达式{0}
没有被替换,我在日志中没有错误。怎么了?