ruby - 数据关联 through,到底用什么用?
PHP中文网
PHP中文网 2017-04-24 09:09:54
0
1
611

有3个模型,document, section, paragraph。

d = Document.new

直接执行 d.sections.to_sql 或者 d.paragraphs.to_sql或者是 d.sections.to_sql会报错,因为没有关联。

问题1:

现在把他们关联了,(我测试后发现添加了has_many后显示的d.sections.to_sql或者是其他模型.to_sql在添加through关系前和后打印都是一样的),那么我就不知道这个through到底有什么用?不是多余的吗?

问题2:

添加了如下关系后,d.section.to_sql报错,为什么会出现这样的错误?

irb(main):008:0> d.sections
SystemStackError: stack level too deep
class Document < ActiveRecord::Base
    has_many :paragraphs, through: :sections
    has_many :sections 
end

class Paragraph < ActiveRecord::Base
     belongs_to :section
end

class Section < ActiveRecord::Base
     belongs_to :document
  has_many :paragraphs
end
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
洪涛

你對象的關係是這樣的:

Document 1 n Section
Section 1 n Paragraph

Document 和 Section 有一對多的關係,Section 和 Paragraph 有一對多的關係。從而可以得出 Document 有多個 Paragraph,但是他們兩個沒有直接的關係,所以透過(through) Section 關聯讓他們聯繫起來。這就是 trough 的作用

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!