19

我已经检查了 Rails number_to_human,但这并不是我想要的。

我想缩短长数字而不包括完整的单位名称:

420 -> 420
5,680 -> 5,680
12,680 -> 12.6K
6,802,251 -> 6.80M
894,100,158 -> 894M

如您所见,没有特定的精度,但更多的是关于总数的长度

任何人都有一个很好的帮助方法吗?

4

2 回答 2

60

放入您的config/locales/en.yml

en:
  number:
    human:
      decimal_units:
        format: "%n%u"
        units:
          unit: ""
          thousand: K
          million: M
          billion: B
          trillion: T
          quadrillion: Q

然后你会得到:

number_to_human 420 # => "420"
number_to_human 5680 # => "5.68K"
number_to_human 12680 # => "12.7K"
number_to_human 6802251 # => "6.8M"
number_to_human 894100158 # => "894M"
于 2012-07-20T19:58:37.527 回答
7

像这样:

number_to_human(a_number,format:'%n%u',units:{thousand:'K',million:'M',billion:'B'})
于 2018-06-15T01:54:06.660 回答