未找到辅助方法

发布于 2024-09-04 05:18:17 字数 372 浏览 5 评论 0原文

我有一个带有方法 ccCopiesHelper 模块。

在我的 ApplicationController 中,我有

helper :all 
helper_method :cc #just tried putting this in recently

如果在另一个控制器中,我尝试使用 cc 方法,我得到

undefined method 'cc' for #<OtherController:0xblublublublub>

我在这里错过了一个步骤吗?

I've got a CopiesHelper module with a method cc.

In my ApplicationController, I have

helper :all 
helper_method :cc #just tried putting this in recently

If in another one of my Controllers, I try using the cc method, I get

undefined method 'cc' for #<OtherController:0xblublublublub>

Am I missing a step here?

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

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

发布评论

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

评论(2

小嗲 2024-09-11 05:18:17

在其中一个控制器中使用 CopiesHelper,只需

{app_dir}/app/controllers/your_controller.rb

class YourController < ApplicationController
    include CopiesHelper

如果您想 执行以下操作: >CopiesHelper 在您的应用程序的每个控制器中只需执行以下操作:

{app_dir}/app/controllers/application_controller.rb

class ApplicationController < ActionController::Base
    include CopiesHelper

If you want to use your CopiesHelper in one of your controller, simply do :

in {app_dir}/app/controllers/your_controller.rb

class YourController < ApplicationController
    include CopiesHelper

If you want to use your CopiesHelper in every controller of your app just do :

in {app_dir}/app/controllers/application_controller.rb

class ApplicationController < ActionController::Base
    include CopiesHelper
一枫情书 2024-09-11 05:18:17

嗯,看来控制器中通常不使用助手!

Well, seems like helpers aren't generally used in controllers!

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