简体   繁体   中英

Problem with variable inside gsp

I have a loop inside a gsp page, and I want to do a calculation on the fly, so I set a variable:

<g:set var="total" value="0" />

And in the loop:

<g:each in="${mob}" var="m">
  ...
   <g:set var="total" value="${total+(m.q*m.sts.uf)}"/>
  ...
</g:each>

The "total" value does not correspond to the expected calculation. mq is an integer, and m.sts.uf is a float.

Any hints ?

Thanks.

What does total end up being?

It could be because total is being initialised as a String.

Try

<g:set var="total" value="${0l}" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM