未找到辅助方法
我有一个带有方法 cc
的 CopiesHelper
模块。
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在其中一个控制器中使用
CopiesHelper
,只需在 {app_dir}/app/controllers/your_controller.rb 中
如果您想 执行以下操作: >CopiesHelper 在您的应用程序的每个控制器中只需执行以下操作:
在 {app_dir}/app/controllers/application_controller.rb 中
If you want to use your
CopiesHelper
in one of your controller, simply do :in {app_dir}/app/controllers/your_controller.rb
If you want to use your
CopiesHelper
in every controller of your app just do :in {app_dir}/app/controllers/application_controller.rb
嗯,看来控制器中通常不使用助手!
Well, seems like helpers aren't generally used in controllers!