的格式属性Struts 中的标签

发布于 2024-08-31 05:57:30 字数 333 浏览 5 评论 0原文

我正在使用 Struts 1.2.7 开发一个 Web 应用程序,

我想使用标签打印整数列表。我搜索了一下,发现使用了format属性来打印想要的结果,但是没有成功。

我应该传递什么作为格式中的值来打印 3 位整数/浮点数。 代码示例如下:

<logic:iterate name="intList" id="integer" >
   <bean:write name="integer" />
<logic:iterate />

这里 intList 是作为请求属性传递到所考虑的 jsp 页面的 int 列表。

I am developing a web application using Struts 1.2.7

I want to print a list of integers using the tag. I searched and found that the format attribute is used to print the desired result but was unsuccessful.

What should I pass as the value in format to print 3 digit integers/floating point numbers.
The code sample is as follows:

<logic:iterate name="intList" id="integer" >
   <bean:write name="integer" />
<logic:iterate />

Here intList is a List of int(s) passed as a request attribute to the jsp page under consideration.

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

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

发布评论

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

评论(1

天邊彩虹 2024-09-07 05:57:30

我相信这应该有效:

<bean:write name="integer" format="0.000" />

I believe this should work:

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