Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
拿下代码:
JSON.stringify({ "x": 1.0 });
输出将是
{"x":1}
我已经使用 toFixed()、parseFloat()、+() 和许多其他方法尝试了所有方法,但我一生都无法让它返回:
{"x":1.0}
我可以让它返回:
{"x":"1.0"}
但我无法得到
这可能吗?我倾向于不。
如果您需要浮动以特定方式显示,则需要将其保留为字符串。
然而,更好的解决方案是将其保留为数字并让客户端/视图对其进行格式化。