在struts 2标签中计算?

发布于 2024-09-26 14:51:22 字数 261 浏览 1 评论 0原文

我有一个迭代,我想计算这样的值的总和:

 <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 技术交流群。

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

发布评论

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

评论(2

胡渣熟男 2024-10-03 14:51:22

假设 myValues 是可通过您的操作访问的数组或整数值列表:

<s:set var="total" value="%{0}" />
<s:iterator value="myValues">
     <s:set var="total" value="%{top + #attr.total}" />
</s:iterator> 
<s:property value="%{'' + #attr.total}" /> 

Assuming myValues is an array or a list of integral values accessible from your action:

<s:set var="total" value="%{0}" />
<s:iterator value="myValues">
     <s:set var="total" value="%{top + #attr.total}" />
</s:iterator> 
<s:property value="%{'' + #attr.total}" /> 
谁的新欢旧爱 2024-10-03 14:51:22

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.

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