假设我正在将forem
集成到我的应用中,而routes.rb
似乎是这样的:
# items
resources :items, only: [:index, :show]
# forem
mount Forem::Engine, :at => '/forums'
在我的默认布局layout/Application.erb.html
中,有类似的内容:
link_to 'items', items_path
并且,在/forums
页面中,它出现:
undefined local variable or method `items_path'
那么,如何在路由到已安装的类
后访问其他路径助手答案 0 :(得分:1)
您必须在路径前添加main_app,如下所示:
link_to 'items', main_app.items_path
答案 1 :(得分:0)