简体   繁体   中英

I need to minus some value from a fixed number in jsf

I need to minus some value (value coming from DB though Databean and VO) here is my code:

value="200 - #{pc_costReportDataBean.adjustCostVo.explanationLength}"

but the problem is result coming like [200-0].

Try:

value="#{200-pc_costReportDataBean.adjustCostVo.explanationLength}" 

The #{} means that the whole expression inside will be evaluated. The values outside will be just treated as Strings.

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