これは私を夢中にさせています。プロジェクト内の 2 つのモデル間にネストされた関係があり、子オブジェクト (年) は親 (祭り) のコンテキストの外では意味がないため、それを浅くしたくないと判断しました。
そのため、関係への参照を見つけることができる場所ならどこでも関係を浅くしましたが、ページにアクセスして新しい子オブジェクトを作成することができないことに気付きました。
私が理解しているURLは次のとおりです。/festivals/1/years/new
routes.rb から:
resources :festivals do
resources :years
end
years_controller.rb から:
# GET festivals/1/years/new
# GET festivals/1/years/new.json
def new
@festival = Festival.find(params[:festival_id])
@year = @festival.years.build
respond_to do |format|
format.html # new.html.erb
format.json { render :json => @year }
end
end
そして、ユーザーが New ページ (親オブジェクトの Show ページ) にアクセスするために押すボタン:
<%= link_to 'Add Year', new_festival_year_path(@festival), :class => 'btn' %>
これにより、ユーザーは正しい URL に移動しますが、次のようになります。
No route matches {:action=>"show", :controller=>"years", :festival_id=>#<Festival id: 7, name: "Improganza", founded: nil, logo: "", mission: "This is that one that people spend a lot of money t...", city: "Honolulu", state_code: "HI", country_code: "US", created_at: "2013-07-26 14:49:19", updated_at: "2013-07-26 14:49:19">}
私は新しい Rails プロジェクトを作成し、Akria Matsuda の nested_scaffold gem を使用して scaffold をセットアップしました。その出力を私のコードと比較するためです...結果のファイルは、ここに示すように見えます。何が欠けているのかわかりません。
念のため、 my の出力rake routes
:
festival_years GET /festivals/:festival_id/years(.:format) years#index
POST /festivals/:festival_id/years(.:format) years#create
new_festival_year GET /festivals/:festival_id/years/new(.:format) years#new
edit_festival_year GET /festivals/:festival_id/years/:id/edit(.:format) years#edit
festival_year GET /festivals/:festival_id/years/:id(.:format) years#show
PUT /festivals/:festival_id/years/:id(.:format) years#update
DELETE /festivals/:festival_id/years/:id(.:format) years#destroy
festivals GET /festivals(.:format) festivals#index
POST /festivals(.:format) festivals#create
new_festival GET /festivals/new(.:format) festivals#new
edit_festival GET /festivals/:id/edit(.:format) festivals#edit
festival GET /festivals/:id(.:format) festivals#show
PUT /festivals/:id(.:format) festivals#update
DELETE /festivals/:id(.:format) festivals#destroy
GET /festivals(.:format) festivals#index
POST /festivals(.:format) festivals#create
GET /festivals/new(.:format) festivals#new
GET /festivals/:id/edit(.:format) festivals#edit
GET /festivals/:id(.:format) festivals#show
PUT /festivals/:id(.:format) festivals#update
DELETE /festivals/:id(.:format) festivals#destroy