我试图在图表中显示值,但我的数组值以小数点表示,我需要删除它们,有什么帮助吗?
this.grapcalories = this.calories [0] .calories;
值在此变量中。
如果this.calories[0].calories是数字,则可以使用Math.round:
this.calories[0].calories
Math.round
this.grapcalories = Math.round(this.calories[0].calories);