標籤:des style blog http color io os 使用 ar
一、如何定義關聯
兩個model之間常常會存在關聯關係,為瞭解決這些關聯引起的複雜操作問題,可以在model定義時定義其關聯關係。如:實體customers和orders定義如下:
class Customer < ActiveRecord::Base has_many :orders , dependent: :destroy end class Order < ActiveRecord::Base belongs_to :customer end |
二、關聯的類型
belongs_to
has_one
has_many
has_many :through
has_one :through
has_and_belongs_to_many
1、belongs_to(與has_many對應)
2、has_one
3、has_many(與belongs_to對應)
4、has_many :through 指many-to-many關聯,定義的實體通過第三方實體與另一個實體有0或多個關聯(第三方實體與二者都是belongs_to的關係)。如:病i人預約醫生的例子,每個預約都對應一個醫生和一個病人,但是通過預約醫生和病人會有多對多的關係。
5、has_one :through 指one-to-one關聯,類似於傳遞依賴,定義的實體通過第三方實體與另一個實體有一對一的關聯。如:每一個suppliers都有一個accounts,而每一個accounts對應一個account_histories。
6、The has_and_belongs_to_many Association 指不需要第三方介入的many-to-many關聯。如:組件與部分,每個組件包括多個部分,而每個部分又屬於多個組件。
三、關聯的選項
:as
:autosave
:class_name
:dependent
:foreign_key
:inverse_of
:primary_key
:source
:source_type
:through
:validate
1、as:指明為多態關聯 2、autosave:若設為true,當owner實體做出某一操作時會自動儲存或刪除其關聯實體的相應操作。 3、class_name:關聯的實體名不能找到對應的實體,通過該屬性設定實際的實體。 4、dependent:當owner實體被摧毀時,關聯實體的行為: destroy:所有關聯實體被摧毀 delete_all:所有關聯實體被直接從資料庫刪除,不可恢複 nullify:外鍵被設為null,不可恢複 restrict_with_exception:拋出異常提示 restrict_with_error:拋出錯誤提示 5、foreign_key:定義外鍵的列名 6、inverse_of:指明反向關聯的實體 7、primary_key:指明關聯項的id 8、through:指明多對多的關係使用的第三方實體 9、validate:如果設為false,關聯關係將會無效。
Ruby的model學習——Active Record Associations