Rails 2.0.2 中的 ApplicationController 方法不会使用引擎覆盖插件方法

发布于 2024-09-24 14:12:00 字数 853 浏览 1 评论 0原文

我正在尝试在我的项目中使用 Savage Beast 2 插件。该插件需要使用引擎插件。我的项目是在 Rails 2.0.2 上。

一些方法

/main_app/vendor/plugins/savage_beast/lib/authentication_system.rb 

我的意思是在插件中的视图中覆盖

/main_app/app/controllers/application.rb

(即使通过在主应用程序中创建类似的视图来覆盖),但看不到 application.rb 中的覆盖方法,而是访问

/main_app/vendor/plugins/savage_beast/lib/authentication_system.rb

我的开头 中的方法application.rb 看起来是这样的:

class ApplicationController < ActionController::Base
  helper :all # include all helpers, all the time
  include SavageBeast::AuthenticationSystem

添加了正确的行到我的 /config/environment.rb 中

require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/boot')

我还在require ... boot 行之后

。我不知道此时该怎么办。任何帮助将不胜感激。

I am trying to use the Savage Beast 2 plugin in my project. This plugin requires the use of Engines plugin. My project is on Rails 2.0.2.

There are some methods in

/main_app/vendor/plugins/savage_beast/lib/authentication_system.rb 

that I mean to override in

/main_app/app/controllers/application.rb

The views within the plugin (even if overridden by creating similar views in the main app) do NOT see the overridden methods within the application.rb and instead access the methods in

/main_app/vendor/plugins/savage_beast/lib/authentication_system.rb

The beginning of my application.rb looks thus:

class ApplicationController < ActionController::Base
  helper :all # include all helpers, all the time
  include SavageBeast::AuthenticationSystem

I also added the correct line to my /config/environment.rb -

require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/boot')

after the require ... boot line.

I'm not sure what to do at this point. Any help will be appreciated.

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

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

发布评论

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

评论(1

寂寞陪衬 2024-10-01 14:12:00

显然,如果我重写 ApplicationHelper 中的这些方法,它就会起作用!
为什么?我不知道!
因此,不要重写 application.rb 中的这些方法
我在 application_helper.rb 中这样做了

,现在它工作正常!
我必须在 application_helper.rb 中包含我自己的身份验证模块,以支持我重写的方法。

Apparently it works if I override those methods in the ApplicationHelper instead!!!
Why? I don't know!
So instead of overriding those methods in application.rb
I did so in application_helper.rb

And now it's working fine!
I had to include my own authentication module within teh application_helper.rb to support the methods I was overriding though.

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