虽然我意识到你应该在视图中使用一个帮助器,但我需要在我的控制器中使用一个帮助器,因为我正在构建一个JSON对象以返回。

它是这样的:

def xxxxx

   @comments = Array.new

   @c_comments.each do |comment|
   @comments << {
     :id => comment.id,
     :content => html_format(comment.content)
   }
   end

   render :json => @comments
end

我如何访问我的html_format助手?


当前回答

class MyController < ApplicationController
    # include your helper
    include MyHelper
    # or Rails helper
    include ActionView::Helpers::NumberHelper

    def my_action
      price = number_to_currency(10000)
    end
end

在Rails 5+中,只需使用helper (helpers.number_to_currency(10000))

其他回答

在Rails 5之前,必须包含helper模块。

在更新的版本中,你可以在你的控制器中使用帮手(复数)对象。

  class UsersController
    def index
      helpers.my_helper_method_name(even_pass_arg_here)
    end
  end

https://www.rubyguides.com/2020/01/rails-helpers/

我的问题用选项1解决了。可能最简单的方法是在控制器中包含你的helper模块:

class ApplicationController < ActionController::Base
  include ApplicationHelper

...

一般来说,如果helper只在控制器中使用,我更倾向于将它声明为类ApplicationController的实例方法。

在rails 6中,只需将这个添加到你的控制器:

class UsersController < ApplicationController
  include UsersHelper
  
  # Your actions

end

现在是user_helpers。Rb将在控制器中可用。

你可以使用

帮手。<helper>在Rails 5+(或ActionController::Base.helpers.<helper>) view_context。<helper> (Rails 4 & 3)(警告:每次调用都会实例化一个新的视图实例) @template。<helper> (Rails 2) 在单例类中包含helper,然后在单例类中包含single .helper 在控制器中包含helper(警告:将使所有的helper方法成为控制器动作)