0
我試圖在Rails 4中建模鏈接和節點。鏈接可以有兩個節點(源節點和目標節點)。節點可以屬於多個鏈接。我在我的鏈接模型中寫了這個。在rails 4中創建關係(一個模型可以屬於多個其他模型)
class Links < ActiveRecord::Base
has_one :source_node, class_name: 'Node'
has_one :target_node, class_name: 'Node'
end
我爲我的節點類寫了這個。它是否正確?
class Nodes < ActiveRecord::Base
belongs_to :link
end
你爲什麼問這是否正確?設計由你決定。正確或錯誤取決於你期望的結果,如果你有這個結果。 – givanse
這是什麼問題? – Gjaldon