虽然我意识到你应该在视图中使用一个帮助器,但我需要在我的控制器中使用一个帮助器,因为我正在构建一个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助手?


当前回答

在Rails 5中使用helper。控制器中的Helper_function。

例子:

def update
  # ...
  redirect_to root_url, notice: "Updated #{helpers.pluralize(count, 'record')}"
end

来源:来自@Markus关于不同答案的评论。我觉得他的答案应该有自己的答案,因为这是最干净、最简单的解决方案。

参考:https://github.com/rails/rails/pull/24866

其他回答

在Rails 5+中,您可以简单地使用下面演示的简单示例函数:

module ApplicationHelper
  # format datetime in the format #2018-12-01 12:12 PM
  def datetime_format(datetime = nil)
    if datetime
      datetime.strftime('%Y-%m-%d %H:%M %p')
    else
      'NA'
    end
  end
end

class ExamplesController < ApplicationController
  def index
    current_datetime = helpers.datetime_format DateTime.now
    raise current_datetime.inspect
  end
end

输出 “2018-12-10 01:01 am”

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

class ApplicationController < ActionController::Base
  include ApplicationHelper

...

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

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 6中,只需将这个添加到你的控制器:

class UsersController < ApplicationController
  include UsersHelper
  
  # Your actions

end

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