从 Rails 3 控制器调用辅助方法
是否可以从控制器调用辅助方法?如果是,如何在 Rails 3 中执行此操作?
Is it possible to call helper methods from controller? If yes how to do this in Rails 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在控制器中包含帮助程序模块,或者将帮助程序定义为控制器方法并通过
helper_method :method_name
将其标记为帮助程序。或者
You can either include the helper module in the controller, or define the helper as a controller method and mark it as a helper via
helper_method :method_name
.or
如果有人想在其他控制器或视图中使用 ApplicationHelper 方法,只需添加下面给出的
include ApplicationHelper
即可,因为您的所有控制器都派生自 ApplicationController。This is working if some one wants to use ApplicationHelper method in other controllers or view just add this
include ApplicationHelper
give below because all your controller derived from ApplicationController.