如何在 Salesforce Apex 中设置双精度格式
我想以“12.30”等格式显示双精度,但它在 salesforce apex 中显示“12.0”。 有人可以帮助我吗?
I want to display double in format such as "12.30" but it display "12.0" in salesforce apex.
can any one help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
VisualForce 使用 java.text.MessageFormat 约定进行格式化。这是一个例子。将
MyDouble
变量替换为您自己的变量。VisualForce uses the java.text.MessageFormat conventions for formatting. Here's an example. Replace the
MyDouble
variable with your own.您可以将 12.30 转换为 int,然后将其转换回 double。将其转换为 int 会截断分数。
给出:
You can cast the 12.30 as an int and then cast it back to double. Casting it to an int truncates the fraction.
gives:
当您创建字段时,我们必须定义它的小数位。尝试将该十进制数指定为 2。它会起作用。
When you are creating a field then we have to define it's decimal places. Try specifying that decimal number to 2. It will work.