如何在Rails控制台中使用Rails 2.x和3.x中的所有视图和帮助器方法?

nop*_*ole 43 ruby-on-rails ruby-on-rails-3

helper.method_name在某些版本的Rails中工作......有哪些方法适用于Rails 2.2.2,2.3.5和3.0.1?(使用所有视图和辅助方法)

Nic*_*nco 75

你也可以尝试:

YourController.helpers.my_helper
Run Code Online (Sandbox Code Playgroud)

例如 :

> ApplicationController.helpers.content_tag(:div, "test")
=> "<div>test</div>" 
Run Code Online (Sandbox Code Playgroud)

这适用于Rails 2和Rails 3.


小智 33

请尝试这个

rails console
helper.any_method_of_helper(pass_argument)
Run Code Online (Sandbox Code Playgroud)

helper.number_to_currency('123.45')
Run Code Online (Sandbox Code Playgroud)