如何使用Rails访问控制器内的助手方法?



我想使用一个方法,我有在我的控制器内的助手。我不知道如何使用view_context我听说过它可以做到

就像前面说的,让它成为一个控制器方法,让它成为一个助手方法。

application_controller.rb
  helper_method :do_stuff
  def do_stuff
    #this method is available in all controllers and views

我投票支持@apneadiving的想法。但是这里是:

class SomeController < ApplicationController
  include SomeHelper
end

相关内容

  • 没有找到相关文章

最新更新