所以我正在建立一个页面和应用程序以及应用程序内容的系统。其中一个页面 has_many :app_instances 和 app_instances has_many :app_contents。
我有模型:page、app、app_instance、app_content
在我的模型中:
class Page < ActiveRecord::Base
has_many :app_instances
end
class App < ActiveRecord::Base
belongs_to :page
end
class AppInstance < ActiveRecord::Base
belongs_to :page
belongs_to :app
has_many :app_contents
end
class AppContent < ActiveRecord::Base
belongs_to :app_instance
belongs_to :app
end
我想要一个对象,其中所有内容都在应用程序实例下的单个内容下......但是有没有办法做到这一点?
我在我的一个控制器中设置了这个:
@page = Page.includes(:app_instances).find(params[:id])
我可以成功调试@page.app_instances,但我一说@page.app_instances.app_contents 就会出错。我猜这只是因为我缺少包含中的包含,但不确定我是如何写的,或者即使这是“好习惯”
我知道我可能会这样做:
has_many :app_contents, :through => :app_instances
但我宁愿让对象与保存内容的实例一起组织(这是有道理的,对吗?)......所以我可以遍历所有实例,并打印出实例的内容
我的数据库架构有意义吗?还是我走错路了
乔尔