我需要在一个模块中访问params
,该模块位于模块帮助中。例如。
module ApplicationHelper
module ExampleModule
extend self
def an_example_method
//access params here
end
end
end
怎么做?
答案 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)
我希望这有助于