将变量传递给“helper_method”
我正在使用 Ruby on Rails 3.0.9,我想将一些变量传递给控制器中声明的 helper_method
。
class ArticlesController < ApplicationController
helper_method :method_name
private
def method_name # Here I would like to state\use something like 'def method_name(var1, var2)'
...
end
end
是否可以?如果是这样,我应该如何编码以及如何使用它?
I am using Ruby on Rails 3.0.9 and I would like to pass some variables to an helper_method
stated in my controller.
class ArticlesController < ApplicationController
helper_method :method_name
private
def method_name # Here I would like to state\use something like 'def method_name(var1, var2)'
...
end
end
Is it possible? If so, how should I code and how can I use that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要编写函数,请执行以下操作:
来调用函数,您可以这样做:
To write a function you do this:
to call a function you do this: