在struts 2标签中计算?
我有一个迭代,我想计算这样的值的总和:
<s:iterator value="myValues" status="myStatus">
<s:property value="value" />
</s:iterator>
<s:property value="total.here" />
我想在“total.here”中显示“值”的总和。 抱歉我的英语不好。 非常感谢。
I have an iterate and i want to calculate sum of the values like this :
<s:iterator value="myValues" status="myStatus">
<s:property value="value" />
</s:iterator>
<s:property value="total.here" />
I want to show the sum of "value" in "total.here".
Sorry for my bad english.
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设 myValues 是可通过您的操作访问的数组或整数值列表:
Assuming myValues is an array or a list of integral values accessible from your action:
Samuel_xL 的答案是正确的。但是,一般来说,如果您可以编辑操作类,我建议在那里进行计算,而不是在 jsp 中进行计算。
Samuel_xL's answer is right. But, in general, if you can edit your action class, I'd advice to make the calculation there instead of doing it in jsp.