对列表数据使用国际化

发布于 2024-09-28 02:09:11 字数 378 浏览 2 评论 0原文

我在应用程序中使用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 技术交流群。

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

发布评论

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

评论(1

风流物 2024-10-05 02:09:13

正如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文