Masatoshi Nishiguchi

Nested routes in Rails

This is my memo on Nested routes in Rails.

Nested Routes

Rails.application.routes.draw do
  ...
  resources :artists do
    resources :songs
  end
  ...
$ rake routes | grep song
    artist_songs GET    /artists/:artist_id/songs(.:format)          songs#index
                 POST   /artists/:artist_id/songs(.:format)          songs#create
 new_artist_song GET    /artists/:artist_id/songs/new(.:format)      songs#new
edit_artist_song GET    /artists/:artist_id/songs/:id/edit(.:format) songs#edit
     artist_song GET    /artists/:artist_id/songs/:id(.:format)      songs#show
                 PATCH  /artists/:artist_id/songs/:id(.:format)      songs#update
                 PUT    /artists/:artist_id/songs/:id(.:format)      songs#update
                 DELETE /artists/:artist_id/songs/:id(.:format)      songs#destroy

Example of a new form

<h2>New Song</h2>

<%= form_for [@artist, @song] do |f| %>
  <%= f.label :title %>
  <%= f.text_field :title %>

  <%= f.label :album %>
  <%= f.text_field :album %>

  <%= f.label :preview_url %>
  <%= f.text_field :preview_url %>

  <%= f.submit %>
<% end %>
class SongsController < ApplicationController
  ...
  # GET    /artists/:artist_id/songs/new
  def new
    @artist = Artist.find(params[:artist_id])
    @song = Song.new
  end

  # POST   /artists/:artist_id/songs
  def create
    @artist = Artist.find(params[:artist_id])
    @song = @artist.songs.create(song_params)
    redirect_to @artist
  end
  ...
class SongsController < ApplicationController
  ...
  # GET    /artists/:artist_id/songs/new
  def new
    @artist = Artist.find(params[:artist_id])
    @song = @artist.songs.new
  end

  # POST   /artists/:artist_id/songs
  def create
    @artist = Artist.find(params[:artist_id])
    @song = Song.new(song_params.merge(artist: @artist))
    if @song.save
      flash[:success] = "A song added to #{@artist.name}"
      redirect_to @artist
    else
      render :new
    end
  ...

Misc

Passing data through params

Rails Named Routes: Path Vs. URL


References