我想缩短json / datatable上的数字。

我从网站获取json数据,但网站上的json显示了非常详细的数字。

例如:json显示408.43324032。我只想显示408或408x。

javascript - 缩短表格中的数据编号-LMLPHP



我想这样显示。

有参考吗?我不知道做这种事情的名字是什么。

javascript - 缩短表格中的数据编号-LMLPHP

任何帮助和参考将不胜感激。

最佳答案

console.log( 408.73324032.toFixed(0) )    // Fix and round to nearest
console.log( 408.73324032.toFixed(1) )    // Fix at 1 decimal and round to nearest
console.log( Math.round(408.73324032) )   // round to nearest
console.log( Math.floor(408.73324032) )   // round to lowest
console.log( Math.ceil(408.73324032) )    // round to upper
console.log( parseInt(408.73324032, 10) ) // integer only (radix 10)





toFixed(1)将非常适合您的目的

关于javascript - 缩短表格中的数据编号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48105639/

10-13 06:03