Ruby-on-rails Rails 路由命名空间和 form_for

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3853531/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-02 23:18:35  来源:igfitidea点击:

Rails Routes Namespaces and form_for

ruby-on-rails

提问by Dex

I have namespace in my routes.rb

我的 routes.rb 中有命名空间

  namespace :businesses do
    resources :registration
  end

My controller is in a subdirectory businesses/registration_controller.

我的控制器位于business/registration_controller 子目录中。

def new
  @business = Business.new
end

In my view, I want to do this form_for @business do |f| ...but I am getting the following error:

在我看来,我想这样做,form_for @business do |f| ...但出现以下错误:

No route matches {:controller=>"businesses", :action=>"create"}

No route matches {:controller=>"businesses", :action=>"create"}

Restarted the server and I'm also getting this:

重新启动服务器,我也得到了这个:

undefined methodbusinesses_path' for #<#:0x10339bb20>`

undefined methodbusiness_path' 用于 #<#:0x10339bb20>`

Here are my rake routes:

以下是我的佣金路线:

                   home_index GET    /home/index(.:format)                       {:action=>"index", :controller=>"home"}
             new_user_session GET    /users/sign_in(.:format)                    {:action=>"new", :controller=>"devise/sessions"}
                 user_session POST   /users/sign_in(.:format)                    {:action=>"create", :controller=>"devise/sessions"}
         destroy_user_session GET    /users/sign_out(.:format)                   {:action=>"destroy", :controller=>"devise/sessions"}
                user_password POST   /users/password(.:format)                   {:action=>"create", :controller=>"devise/passwords"}
            new_user_password GET    /users/password/new(.:format)               {:action=>"new", :controller=>"devise/passwords"}
           edit_user_password GET    /users/password/edit(.:format)              {:action=>"edit", :controller=>"devise/passwords"}
                user_password PUT    /users/password(.:format)                   {:action=>"update", :controller=>"devise/passwords"}
     cancel_user_registration GET    /users/cancel(.:format)                     {:action=>"cancel", :controller=>"devise/registrations"}
            user_registration POST   /users(.:format)                            {:action=>"create", :controller=>"devise/registrations"}
        new_user_registration GET    /users/sign_up(.:format)                    {:action=>"new", :controller=>"devise/registrations"}
       edit_user_registration GET    /users/edit(.:format)                       {:action=>"edit", :controller=>"devise/registrations"}
            user_registration PUT    /users(.:format)                            {:action=>"update", :controller=>"devise/registrations"}
            user_registration DELETE /users(.:format)                            {:action=>"destroy", :controller=>"devise/registrations"}
                        users GET    /users(.:format)                            {:action=>"index", :controller=>"users"}
                        users POST   /users(.:format)                            {:action=>"create", :controller=>"users"}
                     new_user GET    /users/new(.:format)                        {:action=>"new", :controller=>"users"}
                    edit_user GET    /users/:id/edit(.:format)                   {:action=>"edit", :controller=>"users"}
                         user GET    /users/:id(.:format)                        {:action=>"show", :controller=>"users"}
                         user PUT    /users/:id(.:format)                        {:action=>"update", :controller=>"users"}
                         user DELETE /users/:id(.:format)                        {:action=>"destroy", :controller=>"users"}
   full_tree_admin_categories GET    /admin/categories/full_tree(.:format)       {:action=>"full_tree", :controller=>"admin/categories"}
             admin_categories GET    /admin/categories(.:format)                 {:action=>"index", :controller=>"admin/categories"}
             admin_categories POST   /admin/categories(.:format)                 {:action=>"create", :controller=>"admin/categories"}
           new_admin_category GET    /admin/categories/new(.:format)             {:action=>"new", :controller=>"admin/categories"}
          edit_admin_category GET    /admin/categories/:id/edit(.:format)        {:action=>"edit", :controller=>"admin/categories"}
               admin_category GET    /admin/categories/:id(.:format)             {:action=>"show", :controller=>"admin/categories"}
               admin_category PUT    /admin/categories/:id(.:format)             {:action=>"update", :controller=>"admin/categories"}
               admin_category DELETE /admin/categories/:id(.:format)             {:action=>"destroy", :controller=>"admin/categories"}
businesses_registration_index GET    /businesses/registration(.:format)          {:action=>"index", :controller=>"businesses/registration"}
businesses_registration_index POST   /businesses/registration(.:format)          {:action=>"create", :controller=>"businesses/registration"}
  new_businesses_registration GET    /businesses/registration/new(.:format)      {:action=>"new", :controller=>"businesses/registration"}
 edit_businesses_registration GET    /businesses/registration/:id/edit(.:format) {:action=>"edit", :controller=>"businesses/registration"}
      businesses_registration GET    /businesses/registration/:id(.:format)      {:action=>"show", :controller=>"businesses/registration"}
      businesses_registration PUT    /businesses/registration/:id(.:format)      {:action=>"update", :controller=>"businesses/registration"}
      businesses_registration DELETE /businesses/registration/:id(.:format)      {:action=>"destroy", :controller=>"businesses/registration"}
                         root        /(.:format)                                 {:action=>"index", :controller=>"home"}

回答by Voldy

If you have namespaced routes the best way is:

如果您有命名空间路由,最好的方法是:

class Admin::BusinessesController < ApplicationController
  def new
    @business = Business.new
  end
end

in routes.rb:

在routes.rb:

namespace :admin do
  resources :businesses
end

In view:

鉴于:

form_for [:admin, @business] do |f|...

The Docs: http://guides.rubyonrails.org/form_helpers.htmlsection 2.3.1 Dealing with Namespaces

文档:http: //guides.rubyonrails.org/form_helpers.html第 2.3.1 节处理命名空间

Regarding your case:

关于你的情况:

In routes.rb everything is o'k. In the view you should write url explicitly because you have variable in controller other than controller name:

在routes.rb 中一切正常。在视图中,您应该明确写入 url,因为控制器中除了控制器名称之外还有变量:

form_for @business, :url => business_registration_path do |f|...

I suppose that in businesses/registration_controller you have something like this:

我想在 business/registration_controller 中你有这样的事情:

class Businesses::RegistrationController < ApplicationController
  def new
    @business = Business.new
  end
end

And one remark: I wouldn't create registration_controller for registering a new business. I think that keeping business related actions in business_controller is much clearer.

还有一句话:我不会创建 registration_controller 来注册新业务。我认为在 business_controller 中保留与业务相关的操作要清晰得多。

回答by fengd

Actually, I think there is a better solution.

实际上,我认为有一个更好的解决方案。

form_for [:admin, @business]

the issue with giving a url is that if you abstract the form out as a partial view, you'll need to deal with "create" and "update" situations. They points to different urls, and ends up with providing the @urlin controller.

提供 url 的问题是,如果您将表单抽象为局部视图,则需要处理“创建”和“更新”情况。它们指向不同的 url,并最终提供@urlin 控制器。