Rails如何访问" params"在帮助器模块中的模块方法内部

时间:2017-08-31 16:40:32

标签: ruby-on-rails

我需要在一个模块中访问params,该模块位于模块帮助中。例如。

module ApplicationHelper
  module ExampleModule
    extend self

    def an_example_method
      //access params here
    end
  end
end

怎么做?

1 个答案:

答案 0 :(得分:0)

在我看来,最简单的事情就是通过这样的参数

模块ApplicationHelper   模块ExampleModule     延伸自我

def an_example_method(params)
  params.each do |param|
    puts param
  end
  //access params here
end

端 端

现在形成你的coltroller你可以像这样调用an_example_method方法

ExampleModule.an_example_method(params)

我希望这有助于