gpt4 book ai didi

javascript - 缩短表格中的数据数量

转载 作者:行者123 更新时间:2023-12-01 02:33:48 24 4
gpt4 key购买 nike

我想缩短 json/数据表上的数字。

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

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

enter image description here

<小时/>

我想这样展示。

有引用吗?我不知道做这种东西叫什么名字。

enter image description here

任何帮助和引用将不胜感激。

最佳答案

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com