1
我呈現出一些JSON是這樣的:負載關聯的對象:方法
render :json => r.to_json(:methods => ['food_item','drink_item'])
兩個FOOD_ITEM和drink_item有has_one
相關價格。我怎麼能加載這個在json中呈現?
THX
編輯#1 這裏的一些代碼 - 寫昨天深夜:
class MenuItem < ActiveRecord::Base
...
#price
has_one :price, :as => :pricable
accepts_nested_attributes_for :price
end
class ObjectConnection < ActiveRecord::Base
...
def food_item
MenuItem.find(food_id)
end
def drink_item
MenuItem.find(drink_id)
end
end
你能否發佈你的模型代碼? – 2012-03-13 08:36:58