0

深くネストされたリソースがあります。現在、SONG をクレートする場合を除いて、すべて正常に動作しています。何らかの理由で、ARTIST_ID がデータベースに保存されません (NIL として表示されます)。誰かが私を助けてくれませんか、私は初心者です。

最初の入れ子は ARTIST_ID を ALBUMS テーブルに格納します...

ルート.RB

resources :artists do
  resources :albums do
    resources :songs
  end
end

SONGS_CONTROLLER

class SongsController < ApplicationController

  respond_to :html, :js

  def index
    @artist = Artist.find(params[:artist_id])
    @album = Album.find(params[:album_id])
    @songs = @album.songs.all
  end

  def create
    @artist = Artist.find(params[:artist_id])
    @album = Album.find(params[:album_id])
    @song = @album.songs.create(params[:song])
      if @song.save
        redirect_to artist_album_songs_url
        flash[:success] = "Song Created."
      else
        render 'new'
      end
  end

  def new
    @artist = Artist.find(params[:artist_id])
    @album = Album.find(params[:album_id])
    @song = Song.new
  end

end

モデル

class Artist < ActiveRecord::Base
  attr_accessible :name

  has_many :albums
  has_many :songs

end

class Album < ActiveRecord::Base
  attr_accessible :name, :artist_id

  belongs_to :artist
  has_many :songs

end

class Song < ActiveRecord::Base
  attr_accessible :name, :album_id, :artist_id

  belongs_to :albums

end

VIEW (作成、曲の場合)

<div class="container-fluid">
  <div class="row-fluid">

    <%= form_for ([@artist,@album, @song]), :html => { :multipart => true } do |f| %>
      <%= render 'shared/error_messages', object: f.object %>

      <%= f.text_field :name, placeholder: "name", :class => "input-xlarge"%>

      <%= f.submit "Create Song", class: "btn btn-primary"%>

    <% end %>

  </div>

</div>
4

1 に答える 1