1

Is there a way to add trailing zeros to a number in javascript?

For example: 47.0 instead of 47 or 0.0 instead of 0

when I return the numbers in a json, the zeros disapper.

I need them to be numbers and not strings so .toFixed(2) doesn't help.

Thanks!

4

2 回答 2

4

不,你想要的是一个特定的演示文稿,大多数简单类型都没有这个概念。

无论如何,当序列化为 JSON 请求或响应时,它仍然会转换为字符串,但接收端根本不关心它是否表示为 46.0、46.00 或 46.000,除非它周围有“”。

于 2013-11-12T19:34:48.593 回答
4

数字 47.0 与 47 是相同的数字,因此更改其表示的唯一方法是将其设为字符串。

于 2013-11-12T19:22:18.187 回答