本文介绍了如何在Rails之外的Ruby脚本中使用ActionView :: Helper?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找从Ruby脚本中使用ActionView :: Helpers :: NumberHelper的方法.我需要什么等等?
I am looking to use ActionView::Helpers::NumberHelper from a Ruby script.What all do I need to require etc.?
推荐答案
~> irb
ruby-1.9.2-p180 :001 > require 'action_view'
=> true
ruby-1.9.2-p180 :002 > ActionView::Base.new.number_to_currency 43
=> "$43.00"
这篇关于如何在Rails之外的Ruby脚本中使用ActionView :: Helper?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!