将 ruby​​/rails 中的 1200 转换为 1.2K

发布于 2024-11-25 10:32:50 字数 126 浏览 1 评论 0原文

我认为 ruby​​ 或 Rails 中有一种方法可以做到这一点,但我不记得在哪里可以找到它或如何搜索它,所以我希望 stackoverflow 的集体智慧可能会有所帮助。 我不介意编写一个方法来做到这一点,但我确信有人有更好的解决方案。

I think there is a method within ruby or rails that does this but I can't remember where to find it or how to search for it, so I was hoping stackoverflow's collective wisdom might help.
I don't mind writing a method to do this, but I'm sure someone has a better solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

等数载,海棠开 2024-12-02 10:32:50
number_to_human(1200, :format => '%n%u', :units => { :thousand => 'K' })

# 1200 => 1.2K
number_to_human(1200, :format => '%n%u', :units => { :thousand => 'K' })

# 1200 => 1.2K
避讳 2024-12-02 10:32:50

如果您的号码恰好是 1223,则接受的答案输出将为 1.22K,请包含 precision 参数以将其减少到 1.2K。另外,如果您的数字可能是数百万和数十亿的大范围数字,那么最好也满足这些要求:

number_to_human(1200, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2K"

number_to_human(1223, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2K" 

number_to_human(1223456789, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2B" 

If your number happens to be 1223 the accepted answer output would be 1.22K, include the precision parameter to reduce this to 1.2K. Also, if your number could be a wide range of numbers in the millions and billions, then best to cater for these also:

number_to_human(1200, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2K"

number_to_human(1223, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2K" 

number_to_human(1223456789, :format => '%n%u', :precision => 2, :units => { :thousand => 'K', :million => 'M', :billion => 'B' })
# => "1.2B" 
咆哮 2024-12-02 10:32:50

看一下 Rails Number Helper
方法 number_to_ human_size 可能正是您所需要的。

Take a look at Rails Number Helper,
The method number_to_human_size might be what you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文