在 freemarker 中,当从控制器读取数据时,它没有显示它正在进行循环的确切值,为什么?

发布于 2024-11-08 01:22:07 字数 404 浏览 0 评论 0原文

这是我的代码:-固定,可变工资存储在数据库中,例如: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 技术交流群。

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

发布评论

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

评论(1

陌若浮生 2024-11-15 01:22:07

需要记住两件事 -

i) employeeForm.fixedSalaryemployeeForm.variableSalary 的类型是什么?换句话说,需要确保在将值输入到模板中进行替换之前不会发生舍入;

ii) 检查模板中是否设置了数字格式,例如 <#setting number_format="0.##"> 四舍五入到小数点后两位

Two things needed to keep in mind -

i) what are the types for employeeForm.fixedSalary and employeeForm.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

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