2

「Create my Profile」の送信後にエラーが発生しました

ルーティング エラー

[POST] "/users/3/profiles" に一致するルートはありません

次に、webbrick cli = "rails s" を再起動しました。「http://localhost:3000/users/1/profile/new」と入力すると、「undefined method `user_profiles_path'」というエラー メッセージが表示されます。明らかに、ネストされていないリソース「resource :profile」を使用しました。これらのエラーで何が起こったのですか?

<h1>About You</h1>
<div class="row">
  <div class="span6 offset3">
    <%= form_for ([@user, @profile]) do |f| %>
      <%= f.label :name, "First name:" %>
      <%= f.text_field :name %>
      <%= f.label :surname, "Surname:" %>
      <%= f.text_field :surname %>
      <%= f.submit "Create my profile", class: "btn btn-large btn-primary" %>
    <% end %>
  </div>
</div>

  resources :users do
    resource :profile
  end

     user_profile POST   /users/:user_id/profile(.:format)      profiles#create
 new_user_profile GET    /users/:user_id/profile/new(.:format)  profiles#new
edit_user_profile GET    /users/:user_id/profile/edit(.:format) profiles#edit
                  GET    /users/:user_id/profile(.:format)      profiles#show
                  PUT    /users/:user_id/profile(.:format)      profiles#update
                  DELETE /users/:user_id/profile(.:format)      profiles#destroy
            users GET    /users(.:format)                       users#index
                  POST   /users(.:format)                       users#create
         new_user GET    /users/new(.:format)                   users#new
        edit_user GET    /users/:id/edit(.:format)              users#edit
             user GET    /users/:id(.:format)                   users#show
                  PUT    /users/:id(.:format)                   users#update
                  DELETE /users/:id(.:format)                   users#destroy
         sessions POST   /sessions(.:format)                    sessions#create
      new_session GET    /sessions/new(.:format)                sessions#new
          session DELETE /sessions/:id(.:format)                sessions#destroy
             root        /                                      static_pages#home
4

1 に答える 1

7

私が理解している限り、Rails はform_for ([@user, @profile])(が新しいレコードであると仮定して)またはに@profileルーティングされるかどうかを動詞 POST で知る方法がありません。一般的には複数形が想定されるため、単数形が必要な場合は明示的に指定する必要があります。/users/:user_id/profile/users/:user_id/profiles

form_for @profile, url: user_profile_path(@user)
于 2012-07-05T02:06:11.343 に答える