首先我创建了refinerycms应用程序,在我的应用程序中我不能调用我自己的控制器路由,操作和视图我得到了错误
undefined local variable or method `contacts_save_contact_path' for #<#<Class:0xafc9338>:0xb5467fc>
首先我创建了refinerycms应用程序,在我的应用程序中我不能调用我自己的控制器路由,操作和视图我得到了错误
undefined local variable or method `contacts_save_contact_path' for #<#<Class:0xafc9338>:0xb5467fc>
您必须获得对实际应用程序的 url_helpers 的访问权限,这取决于应用程序的命名空间。例如:
在 config/routes.rb 中:
MyApp::Application.routes.draw do
resources :foos
mount Refinery::Core::Engine, at => '/'
end
并rake routes
显示:
foos GET /foos(.:format) foos#index
refinery / Refinery::Core::Engine
您应该能够使用:
MyApp::Application.routes.url_helpers.foos_path
我发现自己不得不refinery.route_path
使用炼油厂 url 助手,所以在你的情况下,refinery.contacts_save_contact_path
可能会成功
路径必须是这样的: Refinery::Core::Engine.routes.url_helpers.your_object_admin_your_object_path
main_app.contacts_save_contact_path
应该管用。