我有安装了引擎的 Rails 应用程序。
#{main_app}/config/routes.rb
mount CommentIt::Engine => "/talk", :as => 'comment_it'
并希望在主应用程序布局中打开引擎视图。
#{main_app}/app/views/layouts/application.html.erb
<html>
<body>
<%= link_to "users", users_path %>
<%= yield %>
</body>
</html>
访问引擎视图时(0.0.0.0:3000/talk)我收到错误“未定义的方法 `users_path' for #<#:0x007f9dbf0f7800>” users_path 在主应用程序视图中工作正常。访问引擎页面时,如何从主应用程序获取路由助手?