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.
如何将 1000 转换为 1k 或 1200 转换为 1.2k?其他编程语言还有其他解决方案,但我不知道如何使其与 AS3 一起使用。
或者有没有更短的方法来做到这一点,而不是如果数字 > 1000 然后使它成为 1k?
你就不能做这样的事吗
var numInK = bigNumber/1000 + "k";
也许您可以使用 Math.round 或其他一些检查来避免像 3.3333333K 这样的荒谬数字