我有一个包含多个rails模型的类作为attr_accessors,我在表,项和用户中存储rails模型
class News
attr_accessor :table, :item, :user
end
我有一个array of News
个对象,我想将其转换为JSON feeds.to_json
表模型有一个名为org的关联,如何包含组织关联?
以下不起作用
feeds.to_json(:include => [:org])
feeds.to_json(:methods => [:org])
feeds.to_json(:include => {:table => { :include => [:org] }})