5

私は2つのモデルを持っています

父.rb:

class Father < ActiveRecord::Base
    has_many :sons, dependent: :destroy
end

息子.rb

class Son < ActiveRecord::Base
    belongs_to :father
end

ルート.rb

Family::Application.routes.draw do
  resources :fathers do
    resources :sons
  end
end

rake ルートの出力:

father_sons GET    /fathers/:father_id/sons(.:format)          sons#index
                POST   /fathers/:father_id/sons(.:format)          sons#create
 new_father_son GET    /fathers/:father_id/sons/new(.:format)      sons#new
edit_father_son GET    /fathers/:father_id/sons/:id/edit(.:format) sons#edit
     father_son GET    /fathers/:father_id/sons/:id(.:format)      sons#show
                PATCH  /fathers/:father_id/sons/:id(.:format)      sons#update
                PUT    /fathers/:father_id/sons/:id(.:format)      sons#update
                DELETE /fathers/:father_id/sons/:id(.:format)      sons#destroy
        fathers GET    /fathers(.:format)                          fathers#index
                POST   /fathers(.:format)                          fathers#create
     new_father GET    /fathers/new(.:format)                      fathers#new
    edit_father GET    /fathers/:id/edit(.:format)                 fathers#edit
         father GET    /fathers/:id(.:format)                      fathers#show
                PATCH  /fathers/:id(.:format)                      fathers#update
                PUT    /fathers/:id(.:format)                      fathers#update
                DELETE /fathers/:id(.:format)                      fathers#destroy

schema.rb

ActiveRecord::Schema.define(version: 20130626013724) do

  create_table "fathers", force: true do |t|
    t.string   "name"
    t.integer  "age"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "sons", force: true do |t|
    t.string   "name"
    t.integer  "age"
    t.integer  "father_id"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "sons", ["father_id"], name: "index_sons_on_father_id"

end

問題は、以下の AA、BB、CC、および DD とマークされた場所に、どのパスとパラメーターを指定する必要があるかということです。これは app/views/sons/index.html.erb ファイルの一部です:

 <% @sons.each do |son| %>
      <tr>
        <td><%= son.name %></td>
        <td><%= son.age %></td>
         <td><%= link_to 'Show', AA %></td>
        <td><%= link_to 'Edit', BB(CC) %></td>
        <td><%= link_to 'Destroy', DD, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>

リソースの息子を追加できます。問題は、その表示パスと編集パスを指定することです。

コードはgithubでも入手できます。

4

2 に答える 2

10

ネストされたリソースの読み取りと、ネストされたリソースの作成

<td><%= link_to 'Show', father_son_path(@father, son) %></td>
<td><%= link_to 'Edit', edit_father_son_path(@father, son) %></td>
<td><%= link_to 'Destroy', [@father, son], confirm: 'Are you sure?', method: :delete %></td>
于 2013-06-26T04:12:22.437 に答える
0

edit_father_son(son.father, son) ショーの編集についてはfather_son(son.father, son) 、私は記憶から話していますが、おそらく(息子、息子.父)ですが、あなたは今アイデアを持っているはずです.

于 2013-06-26T03:48:22.793 に答える