我想缩短json / datatable上的数字。
我从网站上获取json数据,但网站上的json显示非常详细的数据。
例如:json显示408.43324032。我想只显示408或408x。
我想这样展示。
有参考吗?我不知道这个名字叫做什么。
任何帮助&参考将不胜感激。
答案 0 :(得分:2)
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)
非常适合您的目的
答案 1 :(得分:0)
这会有用吗?它似乎支持许多不同的格式和符号的后缀(我认为这是你要求的)。