如何格式化输出文本以在 Vf 页面中仅显示整数而不显示小数
我想在对象中显示一个字段以仅显示整个数字/整数值。该字段在结构中具有十进制值,但我只需要显示该 VF 页面的整数值。
<apex:pageBlockSectionItem >
<apex:outputLabel value="# Connections" for="Connections"/>
<apex:outputText id="Connections" value="{!Event__c.Total_Connections__c}" />
</apex:pageBlockSectionItem>
连接数必须显示为整数。
谢谢
I want to display a field in a object to show just the whole number/integer value. This field has decimal values in the structure but for i need to show the integer value for this VF page only.
<apex:pageBlockSectionItem >
<apex:outputLabel value="# Connections" for="Connections"/>
<apex:outputText id="Connections" value="{!Event__c.Total_Connections__c}" />
</apex:pageBlockSectionItem>
No of connections has to be shown as whole number.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将参数化输出与格式化结合使用,例如:
有关所有格式化选项的更多详细信息,请检查 Java 的 MessageFormat,
使用相同的格式You can use parametrized output with formating, for example:
For more detail about all the formating options, check Java's MessageFormat, the same formating is used for
<apex:outputText>