的格式属性Struts 中的标签
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这应该有效:
I believe this should work: