从 Rails 3 控制器调用辅助方法

发布于 2024-12-27 12:45:40 字数 45 浏览 1 评论 0原文

是否可以从控制器调用辅助方法?如果是,如何在 Rails 3 中执行此操作?

Is it possible to call helper methods from controller? If yes how to do this in Rails 3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不交电费瞎发啥光 2025-01-03 12:45:40
 view_context.some_helper_method
 view_context.some_helper_method
油饼 2025-01-03 12:45:40

您可以在控制器中包含帮助程序模块,或者将帮助程序定义为控制器方法并通过 helper_method :method_name 将其标记为帮助程序。

class FooHelper
  def bar ... end
end

class QuxsController
  include FooHelper
end

或者

class QuxsController
  private
  def bar ... end
  helper_method :bar
end

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.

class FooHelper
  def bar ... end
end

class QuxsController
  include FooHelper
end

or

class QuxsController
  private
  def bar ... end
  helper_method :bar
end
野鹿林 2025-01-03 12:45:40

如果有人想在其他控制器或视图中使用 ApplicationHelper 方法,只需添加下面给出的 include ApplicationHelper 即可,因为您的所有控制器都派生自 ApplicationController。

class ApplicationController < ActionController::Base
  protect_from_forgery       
  include ApplicationHelper  
end

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.

class ApplicationController < ActionController::Base
  protect_from_forgery       
  include ApplicationHelper  
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文