我想在 SAPUI5 中将一个数字保留到小数点后 2 位。谁能帮忙?
RoundingMode 函数用于舍入数字,它使用这些参数:数字和小数位数。
示例
您可以四舍五入,代码如下所示
<Input value="{ path: 'helloPanel>/recipient/amount', type: 'sap.ui.model.type.Float', formatOptions: { maxFractionDigits: 2, roundingMode: 'away_from_zero' } }"/>
广告