我正在尝试编写一个简单的Sinatra,但我需要动作包中的ActionView :: Helpers :: NumberHelper。 http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html
问题是,我该如何安装和使用它?
irb(main):001:0> require 'action_view/helpers/number_helper'
irb(main):002:0> number_with_precision(1)
NoMethodError: undefined method `number_with_precision' for main:Object
irb(main):004:0> ActionView::Helpers::NumberHelper.number_with_precision(1)
NoMethodError: undefined method `number_with_precision' for ActionView::Helpers::NumberHelper:Module
为什么这个简单的步骤不起作用?
此外,如果我需要所有废话:
irb(main):001:0> require 'action_pack'
irb(main):004:0> require 'action_view'
irb(main):005:0> include ActionView::Helpers::NumberHelper
irb(main):006:0> number_to_phone(12345)
NoMethodError: undefined method `starts_with?' for "12345":String
如何理解所有这一切?为什么这个模块不起作用?为什么它不需要它需要什么?它需要什么? starts_with在哪里?
谷歌对这些问题完全保持沉默。
UPD:现在我得到以下内容
number_with_precision(1, :locale => 'fr')
TypeError: wrong argument type nil (expected Fixnum)
在我看来,我的NumberHelper已经坏了。这不是一个好的行为。
答案 0 :(得分:20)
因此,经过一些研究后,我在Rails的主分支上找到了以下拉取请求
https://github.com/rails/rails/pull/6315
它的目的是将ActionView::Helpers::NumberHelper
从ActionView
移到ActiveSupport
我还看到了一些旨在解决一些问题的封闭问题,允许将NumberHelper
作为独立包含在内。这意味着需要修复等。我没有找到number_to_phone
的未解决问题,但问题的根源在于ActiveSupport
向starts_with?
类添加了别名String
。我不确定他们是否已经抓到了那个bug。
在任何情况下,使用ActionView
版本3.2.13
,您都可以执行以下操作
require 'action_view'
include ActionView::Helpers::NumberHelper
number_with_precision 3.1
#=> "3.100"
至于number_to_phone
,它仍将与当前版本打破。我正在制作一个公关来解决这个问题。
修改强>
对于区域设置问题,似乎如果您指定本地,则需要在I18n
中设置正确的选项才能使其正常工作。如果您不提供区域设置,则默认值将显示为此{:separator=>".", :delimiter=>"", :precision=>3, :significant=>false, :strip_insignificant_zeros=>false}
,否则,哈希将为空,这将导致问题。我似乎无法在Rails上找到任何关于它的问题。
同样,这是在主人https://github.com/carlosantoniodasilva/rails/commit/f6b71499e967e03c65d53cc890585f42f3b8aaa2
上的PR上修复的<强>更新强>
您现在可以使用ActiveSupport
来使用这些帮助
http://api.rubyonrails.org/classes/ActiveSupport/NumberHelper.html
答案 1 :(得分:5)
最近改变了:
require "active_support/all"
module Helpers
extend ActiveSupport::NumberHelper
end
Helpers.number_to_currency(10.23) # => "$10.23"