2022-07-15から1日間の記事一覧

【Rails】コントローラーの浅いネスト

浅いネスト ネストしたリソースを書くときにshallowをtrueにするとshow/edit/update/destroyのような、idを必要とするアクションを省略して表現することができる。 resources :articles do resources :comments, shallow:true end POST /articles/:article_i…