我想在SAPUI5中将数字四舍五入到小数点后两位。有人可以帮忙吗?

RoundingMode函数用于舍入数字,它使用以下参数:数字和多少个十进制数字。

示例

您可以四舍五入,您的代码将如下所示:

<Input value="{
   path: 'helloPanel>/recipient/amount',
   type: 'sap.ui.model.type.Float',
   formatOptions: {
      maxFractionDigits: 2,
      roundingMode: 'away_from_zero'
   }
}"/>