ApplicationController 方法中子控制器的型号名称

发布于 2024-10-11 11:06:37 字数 368 浏览 6 评论 0原文

我想在我的应用程序控制器上定义一个方法,然后我可以从继承它的任何控制器调用该方法。在这个方法中,我需要能够获取与调用该方法的控制器关联的模型对象。

class ApplicationController < ActionController::Base
  def bar
    #Access model name here. So inside FooController, it would have Foo.
  end
end

class FooController < ApplicationController
  def index
    bar #Use the method here
  end
end

这可能吗?

I want to define a method on my application controller which I can then call from any controller which inherits from it. Inside this method, I need to be able to get the model object associated with whichever controller is calling the method.

class ApplicationController < ActionController::Base
  def bar
    #Access model name here. So inside FooController, it would have Foo.
  end
end

class FooController < ApplicationController
  def index
    bar #Use the method here
  end
end

Is this possible?

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

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

发布评论

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

评论(1

熊抱啵儿 2024-10-18 11:06:37

尝试

self.class.to_s.chomp "Controller"

Try

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