Railsでアプリケーションを作成しています。
複数のリソースを同時にJSONのレスポンスで取得できるようにしたいです。
citiesのコントローラーのrender json: のあとの記述に悩んでいます。
Ruby
1class CitiesController < ApplicationController 2 def get 3 areas = Area.all 4 prefectures = Prefecture.where(area_id: 3) 5 cities = City.where(prefecture_id: 13) 6 render json: 7 end 8end
class City < ApplicationRecord has_many :offices belongs_to :prefecture end
class Prefecture < ApplicationRecord belongs_to :area has_many :cities end
class City < ApplicationRecord has_many :offices belongs_to :prefecture end
回答1件
あなたの回答
tips
プレビュー