已安装的导轨引擎中的命名路由

时间:2011-11-06 18:11:22

标签: ruby-on-rails ruby-on-rails-3 mount rails-engines named-routing

我正在制作一个像我这样安装的小型轨道引擎:

mount BasicApp::Engine => "/app"

使用this answer我已经确认引擎中的所有路由都应该是:

然而 - 当我(在引擎内)链接到命名路由(在引擎内定义)时,我收到此错误

undefined local variable or method `new_post_path' for #<#<Class:0x000000065e0c08>:0x000000065d71d0>

运行“rake route”清楚地验证“new_post”应该是一个命名路径,所以我不知道为什么Rails(3.1.0)无法解决它。欢迎任何帮助

我的config / route.rb(对于引擎)看起来像这样

BasicApp::Engine.routes.draw do
  resources :posts, :path => '' do
                resources :post_comments
                resources :post_images
        end
end

我应该补充说它是和孤立的引擎。但是,像main_app.root_path这样的路径工作正常 - 而root_path不是

3 个答案:

答案 0 :(得分:51)

正确的方式

我认为最好的解决方案是在Engine的路由代理上调用new_post_path,它可以作为辅助方法使用。在您的情况下,帮助方法默认为basic_app_engine,因此您可以在视图或帮助程序中调用basic_app_engine.new_post_path

如果需要,您可以通过以下两种方式之一设置名称。

# in engine/lib/basic_app/engine.rb:
module BasicApp
  class Engine < ::Rails::Engine
    engine_name 'basic'
  end
end

# in app/config/routes.rb:
mount BasicApp::Engine => '/app', :as => 'basic'

在任何一种情况下,您都可以在视图或帮助中调用basic.new_posts_path

另一种方式

另一种选择是不使用已安装的引擎,而是让引擎将路由直接添加到应用程序。 Thoughtbot's HighVoltage这样做。我不喜欢这个解决方案,因为当你添加很多引擎时它可能会导致名称空间冲突,但它确实有用。

# in engine/config/routes.rb
Rails.application.routes.draw do
  resources :posts, :path => '' do
                resources :post_comments
                resources :post_images
  end
end

# in app/config/routes.rb:
# (no mention of the engine)

答案 1 :(得分:9)

在Rails 4上,engine_name指令对我不起作用。
要从引擎自己的视图或控制器访问引擎路径中定义的命名路由,我最终使用了详细信息

BasicApp::Engine.routes.url_helpers.new_post_path

我建议定义一个简单的辅助方法,使其更有用

# in /helpers/basic_app/application_helper.rb

module BasicApp::ApplicationHelper
  def basic_app_engine
    @@basic_app_engine_url_helpers ||= BasicApp::Engine.routes.url_helpers
  end
end

有了这个,您现在可以使用

basic_app_engine.new_post_path

如果您需要从引擎访问主应用程序助手,可以使用main_app

main_app.root_path

答案 2 :(得分:2)

使用您应用中的以下内容访问引擎路径

MyApp::Engine.routes.url_helpers.new_post_path