2

我正在 Rails3 中编写一个模块化项目,我遇到了这个问题。

我有我的主要项目,我想通过不同的自定义来实现它的一部分,所以我使用引擎,所以我:

- app
  - views
    - shared
      - _header.html.erb     <-- This one is called
  - ...
- config
- ...
- vendors
  - plugins
    - myplugin
      - app
        - views
          - controller1
            - action1.html.erb
          - shared
            - _header.html.erb       <--- I want to render this!

但如果从 action1.html.erb 我打电话

<%= render 'shared/header' %>

第一个 _header.html.erb 被调用,我想在 myplugin 中调用“之前”。我可以只为 myplugin 中的视图执行此操作吗?

这让我可以防止很多无用的“命名空间”。

4

1 回答 1

2

我们遇到了完全相同的问题,并想出了这样的事情:

def self.prioritize_engine_view_paths!(engine)
  self.view_paths = engine.paths["app/views"].existent + MyApp::Application.paths["app/views"].existent
end

它在主应用程序的 ApplicationController 中定义,然后在每个引擎的 ApplicationController 中调用:

module MyEngine
  class ApplicationController < ::ApplicationController
    prioritize_engine_view_paths!(MyEngine::Engine)
  end
end

[编辑] 在 Rails 3.2.0 中它会容易得多:

config.railties_order = [Blog::Engine, :main_app, :all]

有关详细信息,请参阅https://github.com/rails/rails/commit/40b19e063592fc30705f17aafe6a458e7b622ff2

于 2011-11-10T14:13:08.160 回答