gpt4 book ai didi

ruby-on-rails - Rails number_to_percentage 和子奇怪的行为

转载 作者:数据小太阳 更新时间:2023-10-29 08:29:55 28 4
gpt4 key购买 nike

我正在尝试将较大的 % 数字替换为较短的版本 (10000% -> 10k%)。通常代码可以工作,但如果 number_to_percentage 使用它就会停止工作(使用 TOTALY SAME 字符串)。

Loading development environment (Rails 5.1.2)
2.3.1 :001 > "10000.000%".bytes
=> [49, 48, 48, 48, 48, 46, 48, 48, 48, 37]
2.3.1 :002 > helper.number_to_percentage(10000).bytes
=> [49, 48, 48, 48, 48, 46, 48, 48, 48, 37] # totally same
2.3.1 :003 > helper.number_to_percentage(10000).sub(/(\d\d)\d\d\d(?:[.,]\d+)?\%$/){ "#{$1}k%" }
=> "k%" # doesn't work
2.3.1 :004 > "10000.000%".sub(/(\d\d)\d\d\d(?:[.,]\d+)?\%$/){ "#{$1}k%" }
=> "10k%" # works

什么会导致这种情况?有什么想法吗?

最佳答案

因为 number_to_percentage 返回一个 ActiveSupport::SafeBuffer 而不是一个字符串。

helper.number_to_percentage(10000).class # => ActiveSupport::SafeBuffer

ActiveSupport::SafeBuffer(它是 String 的子类)对 sub 等不安全方法做了一些魔术处理。这就是为什么您会有一些惊喜。

关于ruby-on-rails - Rails number_to_percentage 和子奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48187312/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com