私は現在、写真をアップロードするためのプロジェクトに取り組んでいます。ユーザー、アルバム、およびそれらのアルバム内の写真があります。ユーザーとしてアルバムを作成するところまで来ました(セッション、認証、またはログインはまだ行っていませんが、登録は行っています)。フォームを送信した後、Rails というエラーが表示されます
Couldn't find User without an ID
new.html.erb の URL に問題がないことに気付きました。
http://localhost:3000/users/13/albums/new
(問題なし)
しかし、送信した後、エラーが発生し、ページは次のようになります。
http://localhost:3000/albums/58
(問題。URLにuser_idがありません)
なぜ私のルートが突然そのように変わったのか、そしてそれを修正する方法を誰かが知っていますか? エラーは私の app/controllers/albums_controller.rb:14:in `show' @user = User.find(params[:user_id]) 行にあります。
new.html.erb
<%= form_for (@album), url: user_albums_path, :html => { :id => "uploadform", :multipart => true } do |f| %>
<div>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :description %>
<%= f.text_area :description %>
<br>
<%=f.submit %>
</div>
<% end %>
アルバム_コントローラー
def show
@user = User.find(params[:user_id])
@album = @user.albums.find(params[:id])
@photo = @album.photos.build(params[:photo])
respond_to do |format|
if @user.save
format.html { redirect_to album_photo_path(@album), notice: 'Album was successfully created.' }
format.json { render json: @album, status: :created, location: @album}
else
format.html { render action: "new" }
format.json { render json: @album.errors, status: :unprocessable_entity }
end
end
end
def update
end
def edit
end
def create
@user = User.find(params[:user_id])
@album = @user.albums.build(params[:album])
respond_to do |format|
if @user.save
format.html { redirect_to @album, notice: 'Album was successfully created.' }
format.json { render json: @album, status: :created, location: @album}
else
format.html { render action: "new" }
format.json { render json: @album.errors, status: :unprocessable_entity }
end
end
end
ルート
Pholder::Application.routes.draw do
resources :users do
resources :albums
end
resources :albums do
resources :photos
end