对列表数据使用国际化
我在应用程序中使用Struts2。
<s:iterator value="listObject">
<s:component template="abc.vm">
<s:param name="text" value="listValue" />
<s:param name="prefix" value="listIndex" />
</s:component>
</s:iterator>
listValue 是列表的值。我正在使用迭代器来遍历列表。 现在在listValue上,我想在这里放置国际化概念。这样所有列表值都可以根据存储在列表中的区域设置来显示。 请建议!
i am using Struts2 in application.
<s:iterator value="listObject">
<s:component template="abc.vm">
<s:param name="text" value="listValue" />
<s:param name="prefix" value="listIndex" />
</s:component>
</s:iterator>
listValue is a values of list. i am using iterator to traverse the list.
now on listValue, i want to put here internationalization concept.so that all the list value can be display based on Locale which store in a list.
please suggest!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Struts 2 参考,您可以使用不同的解决方案来支持国际化。
我认为适合您要求的最佳解决方案可能是使用 getText() 方法来获取迭代器每个元素的资源包的值。
其他简单的选项可以是在 Action 中设置正确的本地化值,在控件到达 UI 层之前使用相同的方法在迭代器中设置值。
As it's explained in the Struts 2 reference, you can use different solutions to suporting internationalization.
I think that the best solution could fit for your requirements could be to use the
getText()
method to get the value of the resource bundle of every element of the iterator.Other easy option can be to set the right localization value in the Action, using the same approach setting the values in the iterator before the control arrives to the UI layer.