在 freemarker 中,当从控制器读取数据时,它没有显示它正在进行循环的确切值,为什么?
这是我的代码:-固定,可变工资存储在数据库中,例如:14.40 和 300.70 在 ui 中显示这些值时,它显示为固定、可变工资 14,301,它正在执行舍入方法。如何获取任何一个的精确值。(employeeInfoForm)这是我的 obj 包含所有字段。
<tr>
<th >Fixed salary:</th>
<td>${(employeeInfoForm.fixedSalary)!'--'}</td>
<th >Variable Salary:</th>
<td>${(employeeInfoForm.variableSalary)!'--'}</td>
</tr>
this is my code:-fixed ,variable salary are store in data base like:14.40 and 300.70
while displaying these value in ui it display like fixed ,variable salary 14,301 it is doing round method. how to get exact value pzl any one.(employeeInfoForm)this is my obj contain all fields.
<tr>
<th >Fixed salary:</th>
<td>${(employeeInfoForm.fixedSalary)!'--'}</td>
<th >Variable Salary:</th>
<td>${(employeeInfoForm.variableSalary)!'--'}</td>
</tr>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要记住两件事 -
i)
employeeForm.fixedSalary
和employeeForm.variableSalary
的类型是什么?换句话说,需要确保在将值输入到模板中进行替换之前不会发生舍入;ii) 检查模板中是否设置了数字格式,例如
<#setting number_format="0.##">
四舍五入到小数点后两位Two things needed to keep in mind -
i) what are the types for
employeeForm.fixedSalary
andemployeeForm.variableSalary
? In other words, need to ensure that rounding does not happen before the value is fed in for replacement in template;ii) check and see if number format is set in template, for e.g.,
<#setting number_format="0.##">
rounds to two decimal places