Francis's Octopress Blog

A blogging framework for hackers.

Rubyonrails Guide to Active Record Associations

Rubyonrails Guide to Active Record Associations

Active Record

Active Record(中文名:活动记录)是一种领域模型模式,特点是一个模型类对应关系型数据库中的一个表,而模型类的一个实例对应表中的一行记录。Active Record 和Row Gateway (行记录入口)十分相似,但前者是领域模型,后者是一种数据源模式。关系型数据库往往通过外键来表述实体关系,Active Record 在数据源层面上也将这种关系映射为对象的关联和聚集。 Active Record 适合非常简单的领域需求,尤其在领域模型和数据库模型十分相似的情况下。如果遇到更加复杂的领域模型结构(例如用到继承、策略的领域模型),往往需要使用分离数据源的领域模型,结合Data Mapper (数据映射器)使用。 Active Record 驱动框架一般兼有ORM 框架的功能,但ActivActive Recorde Record 不是简单的ORM,正如和Row Gateway 的区别。著名的例子是全栈(Full Stack)Web 开发框架Ruby on Rails ,其默认使用一个纯Ruby 写成的Active Record 框架来驱动MVC 中的模型层。 对象关系映射(ORM)提供了概念性的、易于理解的模型化数据的方法。ORM方法论基于三个核心原则:简单:以最基本的形式建模数据。传达性:数据库结构被任何人都能理解的语言文档化。精确性:基于数据模型创建正确标准化了的结构。 在Martin Fowler 的《企业应用架构模式》一书中曾详细叙述了本模式。 以下是著名的Active Record 驱动框架: SQLObject(Python) Ruby on Rails ActiveRecord (Ruby) Yii Framework ActiveRecord (PHP) Castle ActiveRecord (.NET)

Migrations

Migrations are a convenient way for you to alter移动your database in a structured and organized manner.Migrations是一种很便捷的方法让你能够以一种结构化的和有组织的方式来迁移你的数据库。You could edit fragments of SQL by hand but you would then be responsible for telling other developers that they need to go and run them.你可以手动编辑SQL片段,而且你有责任把这些告诉其他的开发人员,因为他们需要开发和使用它们。You’d also have to keep track of which changes need to be run against the production machines next time you deploy.你也可以跟踪对你部署的代码在接下来的production机器(将会)发生的变化。 Active Record tracks which migrations have already been run so all you have to do is update your source and run rake db:migrate.Active Record跟踪并迁移你已经运行过的(代码和数据),而你只需要在更新了你的源代码的时候执行rake db:migrateActive Record will work out which migrations should be run.Active Recor将会计算出那些迁移需要被执行。It will also update your db/schema.rb file to match the structure of your database.它还会更新你的db/schema.rb文件使其于你的数据库结构相匹配。 Rails使用的是Active Record 框架来处理数据迁移,这里笔者把ActiveRecord框架放在一个地方学习了,如需了解Migration部分需要直接阅读Migration部分。  

Active Record Validations and Callbacks 活动记录验证和回调

This guide teaches you how to hook勾子into the life cycle of your Active Record objects.这个教程指导你怎样挂接到你的Active Record objects的生存周期。You will learn how to validate the state of objects before they go into the database, and how to perform custom operations at certain points in the object life cycle.你将会学习到在将数据对象存入数据库之前怎样验证它们的状态,以及在对象生存周期的一些点上怎样执行定制操作。 Rails使用的是Active Record 框架来处理验证和回调,这里笔者把ActiveRecord框架放在一个地方学习了,如需了解Migration部分需要直接阅读ValidationsandCallbacks部分。

A Guide to Active Record Associations

This guide covers the association features of Active Record. By referring to this guide, you will be able to:本教程涵盖了Active Record的关系部分的特性。(通过)这个教程提及的,你将能够:
  • Declare associations between Active Record models 在Active Record的models中声明(它们的)关系
  • Understand the various types of Active Record associations 明白各种类型的Active Record关系
  • Use the methods added to your models by creating associations 通过添加方法到models(的形式)来创建关系

1 Why Associations?为什么(会有)Associations

Why do we need associations between models? Because they make common operations simpler and easier in your code. For example, consider a simple Rails application that includes a model for customers and a model for orders. Each customer can have many orders. Without associations, the model declarations would look like this:为什么在models之间需要关系?因为它们使得在你的代码中大多数操作更加简单和容易。例如,思考一个简单的Rails应用程序其中包含一个customers的models和一个orders的模型(生产者和消费者模型)。每个消费者可以拥有多个生产者。没有associations(的话),模型声明看起来像这样: classCustomer<ActiveRecord::Base end classOrder<ActiveRecord::Base end Now,suppose we wanted to add a new order for an existing customer.We’d need to do something like this:现在假设我们想为一个存在的customer添加一个新的order。我们需要做如下事情: @order=Order.create(:order_date=>Time.now, :customer_id=>@customer.id) Or consider deleting a customer, and ensuring that all of its orders get deleted as well:或者考虑删除一个customer,那么确保它的所有的orders也被删除。 @orders = Order.where(:customer_id => @customer.id) @orders.each do |order| order.destroy end @customer.destroy With Active Record associations, we can streamline these — and other — operations by declaratively声明方式telling Rails that there is a connection between the two models. Here’s the revised code for setting up customers and orders:通过Active Record associations,我们可以精简这样的或者其它(类似的)操作通过声明的方式告诉Rails在两个models之间有一个连接。这里修订代码来设定customers和orders: class Customer < ActiveRecord::Base has_many :orders, :dependent => :destroy end   class Order < ActiveRecord::Base belongs_to :customer end With this change, creating a new order for a particular customer is easier:通过这样的修改,创建一个新的order给一个特定的customer更加容易: @order = @customer.orders.create(:order_date => Time.now) Deleting a customer and all of its orders is much easier:删除一个customer和它的所有的orders也容易了许多: @customer.destroy To learn more about the different types of associations, read the next section of this guide. That’s followed by some tips and tricks for working with associations, and then by a complete reference参考to the methods and options for associations in Rails.想要学习更多不同的类型的associations,阅读guide接下来的部分。这些(内容)伴随这一些在(使用)associations工作发现的tips和tricks,然后是一些Rails的associations的一些方法和options的一些完整的参考。

2 The Types of Associations

In Rails, an association is a connection between two Active Record models. Associations are implemented using macro-style calls, so that you can declaratively add features to your models. For example, by declaring that one model belongs_to another, you instruct Rails to maintain Primary Key–Foreign Key information between instances of the two models, and you also get a number of utility methods added to your model. Rails supports six types of associations:在Rails,一个association是一个在两个ActiveRecord模型之间的连接。Associations(通过)使用宏方式的调用实施,以至于你可以(以)声明的方式添加features到你的models。例如申明一个modelbelongs_to另一个(模型)。Rails支持六种类型的associations
  • belongs_to
  • has_one
  • has_many
  • has_many :through
  • has_one :through
  • has_and_belongs_to_many
In the remainder of this guide,youll learn how to declare and use the various forms of associations. Butfirst,a quick introduction to the situations where each association type is appropriate.在这个guide的其他的部分,你将会学习到怎样申明和使用各种的形式的associations。但是首先,做一个快速的说明:每种类型的association在什么情况下出现。

2.1 The belongs_to Association

A belongs_to association sets up a one-to-one connection with another model, such that each instance of the declaring model “belongs to” one instance of the other model. For example, if your application includes customers and orders, and each order can be assigned to exactly one customer, you’d declare the order model this way:一个belongs_to关系设立一个one-to-one连接到另一个model,通过这样声明model的每一个实例belongs to另一个模型的实例。例如,如果你的应用程序包含customersorders,并且每个order能够关联到仅仅一个customer,你可以这样的方式申明order模型: class Order < ActiveRecord::Base belongs_to :customer end

2.2 The has_one Association

A has_one association also sets up a one-to-one connection with another model, but with somewhat different semantics语义(and consequences结果). This association indicates that each instance of a model contains or possesses one instance of another model. For example, if each supplier in your application has only one account, you’d declare the supplier model like this: 一个has_one关系也设定一个one-to-one连接到另一个model,但是有某些不同的语义(和结果)。这个关系指出了(声明的)模型的每一个实例包含或拥有一个其他模型的实例。例如你的应用程序中的每一个supplier仅仅只有一个account,你可以这样声明supplier模型: class Supplier < ActiveRecord::Base has_one :account end  

2.3 The has_many Association

A has_many association indicates a one-to-many connection with another model. You’ll often find this association on the “other side” of a belongs_to association. This association indicates that each instance of the model has zero or more instances of another model. For example, in an application containing customers and orders, the customer model could be declared like this: 一个has_many关系指定了一个one-to-many连接到另一个model。你会经常发现这个关系在belongs_to关系的另一个端。这个关系指明了(声明)模型的每一个实例有零个或多个其它模型的实例。例如,在一个应用程序中包含customersorderscustomer模型如下声明: class Customer < ActiveRecord::Base has_many :orders end The name of the other model is pluralized多元化when declaring a has_many association.  

2.4 The has_many :through Association

A has_many :through association is often used to set up a many-to-many connection with another model. This association indicates that the declaring model can be matched with zero or more instances of another model by proceeding through a third model. For example, consider a medical practice where patients make appointments to see physicians. The relevant association declarations could look like this: 一个has_many :through关系通常用于设定一个many-to-many连接到另一个模型。这个关系指定申明的模型可以通过第三个模型(中间模型)匹配零个或多个另一个模型的实例。例如,想想一个医疗实践(例子)其中病人约定时间去看医生。它们的有关关系声明可以如下: class Physician < ActiveRecord::Base has_many :appointments has_many :patients, :through => :appointments#通过约会有多个病人 end   class Appointment < ActiveRecord::Base belongs_to :physician belongs_to :patient end   class Patient < ActiveRecord::Base has_many :appointments has_many :physicians, :through => :appointments end The collection of join models can be managed via通过the API. For example, if you assign加入模型的集合可以通过API管理。例如,如果你指定 physician.patients = patients new join models are created for newly associated关联的objects, and if some are gone their rows are deleted. Automatic deletion of join models is direct, no destroy callbacks are triggered. The has_many :through association is also useful for setting up “shortcuts” through nested has_many associations. For example, if a document has many sections, and a section has many paragraphs, you may sometimes want to get a simple collection of all paragraphs in the document. You could set that up this way: has_many :through关系也有利于设定快捷方式通过嵌套has_many关系。 class Document < ActiveRecord::Base has_many :sections has_many :paragraphs, :through => :sections end   class Section < ActiveRecord::Base belongs_to :document has_many :paragraphs end   class Paragraph < ActiveRecord::Base belongs_to :section end With :through => :sections specified, Rails will now understand:因为:through => :sections被指定,Rails现在将会明白如下(语句): @document.paragraphs

2.5 The has_one :through Association

A has_one :through association sets up a one-to-one connection with another model. This association indicates that the declaring model can be matched with one instance of another model by proceeding through a third model. For example, if each supplier has one account, and each account is associated with one account history, then the customer model could look like this: 一个has_one :through关系设定一个one-to-one连接到另一个模型。这个关系指明声明的模型可以匹配另个模型的一个实例通过第三个模型(中间模型)。例如,如果每个supplier(供应商)有一个account,并且每个account关联一个account history,那么customer模型将会像这样: class Supplier < ActiveRecord::Base has_one :account has_one :account_history, :through => :account end   class Account < ActiveRecord::Base belongs_to :supplier has_one :account_history end   class AccountHistory < ActiveRecord::Base belongs_to :account end  

2.6 The has_and_belongs_to_many Association

A has_and_belongs_to_many association creates a direct many-to-many connection with another model, with no intervening干预model. For example, if your application includes assemblies and parts, with each assembly having many parts and each part appearing in many assemblies, you could declare the models this way: 一个has_and_belongs_to_many关系创建一个直接的many-to-many连接到另一个模型,没有干扰模型。例如,如果你的应用程序包含assembliesparts,其中每个assembly拥有多个parts并且每个part发生在多个集会中,你可以以这样的方式声明模型: class Assembly < ActiveRecord::Base has_and_belongs_to_many :parts end   class Part < ActiveRecord::Base has_and_belongs_to_many :assemblies end  

2.7 Choosing Between belongs_to and has_one

If you want to set up a 1–1 relationship between two models, you’ll need to add belongs_to to one, and has_one to the other. How do you know which is which? 如果你想在两个模型间设定一个1-1的关系,你将需要添加belongs_to到一个(模型中),以及has_one到另一个(模型中)。你是怎么知道谁是谁的呢? The distinction区别is in where you place the foreign key (it goes on the table for the class declaring the belongs_to association), but you should give some thought to the actual meaning of the data as well. The has_one relationship says that one of something is yoursthat is, that something points back to you. For example, it makes more sense to say that a supplier owns an account than that an account owns a supplier. This suggests that the correct relationships are like this: class Supplier < ActiveRecord::Base has_one :account end   class Account < ActiveRecord::Base belongs_to :supplier end The corresponding migration might look like this: class CreateSuppliers < ActiveRecord::Migration def change create_table :suppliers do |t| t.string :name t.timestamps end   create_table :accounts do |t| t.integer :supplier_id t.string :account_number t.timestamps end end end Using t.integer :supplier_id makes the foreign key naming obvious and explicit. In current versions of Rails, you can abstract away this implementation detail by using t.references :supplier instead.使用t.integer :supplier_id使得外建命名明显和精确。在当前版本的Rails,你可以抽象掉这个实施细节通过使用t.references :supplier替代。

2.8 Choosing Between has_many :through and has_and_belongs_to_many

Rails offers two different ways to declare a many-to-many relationship between models. The simpler way is to use has_and_belongs_to_many, which allows you to make the association directly: Rails提供了两种不同的方式来声明一个模型间的many-to-many关系。比较简单的方式使用has_and_belongs_to_many,它允许你直接的(创建)关系: class Assembly < ActiveRecord::Base has_and_belongs_to_many :parts end   class Part < ActiveRecord::Base has_and_belongs_to_many :assemblies end The second way to declare a many-to-many relationship is to use has_many :through. This makes the association indirectly, through a join model: 第二种方式是声明一个many-to-many关系使用has_many :through,它可以使得关系间接的,同加入一个模型: class Assembly < ActiveRecord::Base has_many :manifests has_many :parts, :through => :manifests end   class Manifest < ActiveRecord::Base belongs_to :assembly belongs_to :part end   class Part < ActiveRecord::Base has_many :manifests has_many :assemblies, :through => :manifests end The simplest rule of thumb is that you should set up a has_many :through relationship if you need to work with the relationship model as an independent entity实体.If you don’t need to do anything with the relationship model, it may be simpler to set up a has_and_belongs_to_many relationship (though you’ll need to remember to create the joining table in the database).最简单的使用规则是,如果你需要使用关系模型作为依赖实体来工作你应该设定一个has_many :through关系You should use has_many:through if you need validations, callbacks, or extra attributes on the join model.

2.9 Polymorphic Associations多元关系

A slightly more advanced twist on associations is the polymorphic association.一个略微先进的关系枢纽是多元关系。With polymorphic associations, a model can belong to more than one other model, on a single association. 通过多态关系,(在单个关系中)一个模型可以属于超过一个其他的模型。For example, you might have a picture model that belongs to either an employee model or a product model. Here’s how this could be declared:例如,你可能有一个picture模型属于一个employee或者一个product模型。这是它们如何被定义的: class Picture < ActiveRecord::Base belongs_to :imageable, :polymorphic => true end   class Employee < ActiveRecord::Base has_many :pictures, :as => :imageable end   class Product < ActiveRecord::Base has_many :pictures, :as => :imageable end You can think of a polymorphic belongs_to declaration as setting up an interface that any other model can use. From an instance of the Employee model, you can retrieve a collection of pictures: @employee.pictures. 你可以认为一个多元belongs_to声明相当于设定一个其它任何模型可以使用的接口。来源于Employee模型的实例,你可以检索一个pictures的集合:@employee.pictures Similarly, you can retrieve @product.pictures.相近的,你可以检索@product.pictures If you have an instance of the Picture model, you can get to its parent via @picture.imageable. To make this work, you need to declare both a foreign key column and a type column in the model that declares the polymorphic interface:如果你有一个Picture模型的实例,你可以得到它的父模型通过@picture.imageable。要使这些工作,你需要声明一个外键字段和一个什么多元(关系)的接口的字段: class CreatePictures < ActiveRecord::Migration def change create_table :pictures do |t| t.string :name t.integer :imageable_id t.string :imageable_type t.timestamps end end end This migration can be simplified by using the t.references form:这个migration可以通过t.references形式简洁的(声明): class CreatePictures < ActiveRecord::Migration def change create_table :pictures do |t| t.string :name t.references :imageable, :polymorphic => true t.timestamps end end end

2.10 Self Joins

In designing a data model, you will sometimes find a model that should have a relation to itself. For example, you may want to store all employees in a single database model, but be able to trace relationships such as between manager and subordinates. This situation can be modeled with self-joining associations:在数据库设计中,有时你会发现一个模型具有一个(关联)到它自己的关系例如,你可能希望保存所有的employees在单个数据库模型中,但是能够跟踪关系比如在manager和subordinates之间。这个情况可以设定self-joining模型: class Employee < ActiveRecord::Base has_many :subordinates, :class_name => “Employee” belongs_to :manager, :class_name => “Employee”, :foreign_key => “manager_id” end With this setup, you can retrieve @employee.subordinates and @employee.manager.通过这个设定,你可以检索@employee.subordinates and @employee.manager

3 Tips提示, Tricks窍门, and Warnings警告

Here are a few things you should know to make efficient use of Active Record associations in your Rails applications:这里有一些事情你应该知道(它)使得在你的Rails应用程序使用Active Record关系变得高效:
  • Controllingcaching控制缓存
  • Avoidingnamecollisions避免名称碰撞
  • Updating the schema 更新结构
  • Controlling association scope 控制关系范围

3.1 Controlling Caching

All of the association methods are built around caching, which keeps the result of the most recent query available for further operations. The cache is even shared across methods. For example:所有的关系方法都创建在缓存周围,这使的最近的查询,可用于进一步的操作的结果。 customer.orders # retrieves orders from the database customer.orders.size # uses the cached copy of orders customer.orders.empty? # uses the cached copy of orders But what if you want to reload the cache, because data might have been changed by some other part of the application? Just pass true to the association call:但是如果你想重载cache,因为数据可能被应用程序的其他部分改变?仅仅通过添加投入额到关系调用: customer.orders # retrieves orders from the database customer.orders.size # uses the cached copy of orders customer.orders(true).empty? # discards the cached copy of orders # and goes back to the database

3.2 Avoiding Name Collisions避免名称碰撞

You are not free to use just any name for your associations. Because creating an association adds a method with that name to the model, it is a bad idea to give an association a name that is already used for an instance method of ActiveRecord::Base. The association method would override the base method and break things. For instance, attributes or connection are bad names for associations. 你不能不限制的给你的关系使用任何名字。因为创建一个关系添加一个方法和你命名的名字到模型,给一个关系取一个在ActiveRecord::Base实例方法中已经使用了的方法不是个好主意。这个关系方法将会覆盖原有方法和打断事情。比如实例,attributes or connection是关系的坏名称。

3.3 Updating the Schema

Associations are extremely useful, but they are not magic. You are responsible for maintaining your database schema to match your associations. In practice, this means two things, depending on what sort of associations you are creating. For belongs_to associations you need to create foreign keys, and for has_and_belongs_to_many associations you need to create the appropriate join table. 关系相当有用,但是它们不是魔法。你有责任注意你的数据库结构和你的关系的匹配。在实际中,这意味这两件事,依赖于你创建的何种关系。对于belongs_to关系你需要创建外键,对应has_and_belongs_to_many关系你需要创建适当的(关系)加入表中。
3.3.1 Creating Foreign Keys for belongs_to Associations
When you declare a belongs_to association, you need to create foreign keys as appropriate. For example, consider this model:当你声明一个belongs_to关系,你需要创建一个外键(作为合适的方式来更新数据结构)。例如,思考如下模型: class Order < ActiveRecord::Base belongs_to :customer end This declaration needs to be backed up by the proper foreign key declaration on the orders table:这个声明需要通过在生产者表单声明适当的外键备份。 class CreateOrders < ActiveRecord::Migration def change create_table :orders do |t| t.datetime :order_date t.string :order_number t.integer :customer_id end end end If you create an association some time after you build the underlying底层model, you need to remember to create an add_column migration to provide the necessary foreign key.有时你创建的关系在你创建的底层模型之后,你需要记住创建一个add_column migration提供必须的外键。    
3.3.2 Creating Join Tables for has_and_belongs_to_many Associations
If you create a has_and_belongs_to_many association, you need to explicitly create the joining table. Unless the name of the join table is explicitly specified by using the :join_table option, Active Record creates the name by using the lexical order of the class names. So a join between customer and order models will give the default join table name of “customers_orders” because “c” outranks “o” in lexical ordering. 如果你创建了一个has_and_belongs_to_many关系,你需要准确的创建joining表单。除非join表单使用:join_table选项准确的指定,(否则)Active Record就会使用类名提供的的词汇创建表单名称。因此一个在customerorder模型之间join(的表单)将会默认插入表名customers_orders因为co前面在提供的词汇中。 The precedence优先between model names is calculated using the < operator for String. This means that if the strings are of different lengths, and the strings are equal when compared up to the shortest length, then the longer string is considered of higher lexical precedence than the shorter one. For example, one would expect the tables “paper_boxes” and “papers” to generate a join table name of “papers_paper_boxes” because of the length of the name “paper_boxes”, but it in fact generates a join table name of “paper_boxes_papers” (because the underscore ‘_’ is lexicographically字典less than ‘s’ in common encodings). Whatever the name, you must manually手动generate the join table with an appropriate migration. For example, consider these associations: class Assembly < ActiveRecord::Base has_and_belongs_to_many :parts end   class Part < ActiveRecord::Base has_and_belongs_to_many :assemblies end These need to be backed up by a migration to create the assemblies_parts table. This table should be created without a primary key: class CreateAssemblyPartJoinTable < ActiveRecord::Migration def change create_table :assemblies_parts, :id => false do |t| t.integer :assembly_id t.integer :part_id end end end We pass :id => false to create_table because that table does not represent表示a model. That’s required for the association to work properly. If you observe观察any strange behavior in a has_and_belongs_to_many association like mangled错误models IDs, or exceptions about conflicting IDs chances are you forgot that bit.

3.4 Controlling Association Scope控制关系范围

By default, associations look for objects only within the current module’s scope. This can be important when you declare Active Record models within a module. For example:默认情况,(通过)关系查找对象仅仅在当前模型范围中。这很重要点你在一个module中声明Active Record models例如: module MyApplication module Business class Supplier < ActiveRecord::Base has_one :account end   class Account < ActiveRecord::Base belongs_to :supplier end end end This will work fine, because both the Supplier and the Account class are defined within the same scope. But the following will not work, because Supplier and Account are defined in different scopes: module MyApplication module Business class Supplier < ActiveRecord::Base has_one :account end end   module Billing class Account < ActiveRecord::Base belongs_to :supplier end end end To associate a model with a model in a different namespace, you must specify the complete class name in your association declaration: module MyApplication module Business class Supplier < ActiveRecord::Base has_one :account, :class_name => “MyApplication::Billing::Account” end end   module Billing class Account < ActiveRecord::Base belongs_to :supplier, :class_name => “MyApplication::Business::Supplier” end end end

4 Detailed Association Reference具体关系参考

The following sections give the details of each type of association, including the methods that they add and the options that you can use when declaring an association.接下来的部分给出了每种关系的具体的介绍,包含当你声明一个关系时可以使用的(这些关系)添加的方法和选项。
4.1.1 Methods Added by belongs_to
When you declare a belongs_to association, the declaring class automatically gains受益four methods related to the association:
  • association(force_reload = false)
  • association=(associate)
  • build_association(attributes = {})
  • create_association(attributes = {})
In all of these methods, association is replaced with the symbol passed as the first argument to belongs_to. For example, given the declaration: class Order < ActiveRecord::Base belongs_to :customer end Each instance of the order model生产者模型will have these methods: customer customer= build_customer create_customer   When initializing a new has_one or belongs_to association you must use the build_ prefix构造前缀to build the association, rather than the association. build method that would be used for has_many or has_and_belongs_to_many associations. To create one, use the create_ prefix新建前缀.
4.1.1.1 association(force_reload = false)
The association method returns the associated object, if any. If no associated object is found, it returns nil. @customer = @order.customer If the associated object has already been retrieved检索from the database for this object, the cached version will be returned. To override this behavior (and force a database read), pass true as the force_reload argument.
4.1.1.2 association=(associate)
The association= method assigns an associated object to this object. Behind the scenes, this means extracting the primary key from the associate object and setting this objects foreign key to the same value. @order.customer = @customer
4.1.1.3 build_association(attributes = {})
The build_association method returns a new object of the associated type. This object will be instantiated from the passed attributes, and the link through this object’s foreign key will be set, but the associated object will not yet be saved. @customer = @order.build_customer(:customer_number => 123, :customer_name => “John Doe”)
4.1.1.4 create_association(attributes = {})
The create_association method returns a new object of the associated type. This object will be instantiated from the passed attributes, and the link through this object’s foreign key will be set. In addition, the associated object will be saved (assuming that it passes any validations). @customer = @order.create_customer(:customer_number => 123, :customer_name => “John Doe”)
4.1.2 Options for belongs_to
In many situations, you can use the default behavior of belongs_to without any customization. But despite尽管Rails’ emphasis强调of convention公约over customization, you can alter that behavior in a number of ways. This section covers the options that you can pass when you create a belongs_to association. For example, an association with several options might look like this: class Order < ActiveRecord::Base belongs_to :customer, :counter_cache => true, :conditions => “active = 1” end The belongs_to association supports these options:
  • :autosave
  • :class_name
  • :conditions 条件
  • :counter_cache
  • :dependent
  • :foreign_key
  • :include
  • :polymorphic 多元
  • :readonly
  • :select
  • :touch
  • :validate
4.1.2.1 :autosave
If you set the :autosave option to true, Rails will save any loaded members and destroy members that are marked for destruction whenever you save the parent object.
4.1.2.2 :class_name
If the name of the other model cannot be derived from the association name, you can use the :class_name option to supply the model name. For example, if an order belongs to a customer, but the actual name of the model containing customers is Patron, you’d set things up this way:
4.1.2.3 :conditions
The :conditions option lets you specify the conditions that the associated object must meet (in the syntax used by an SQL WHERE clause). class Order < ActiveRecord::Base belongs_to :customer, :conditions => “active = 1” end
4.1.2.4 :counter_cache
The :counter_cache option can be used to make finding the number of belonging objects more efficient. Consider these models: class Order < ActiveRecord::Base belongs_to :customer end class Customer < ActiveRecord::Base has_many :orders end With these declarations, asking for the value of @customer.orders.size requires making a call to the database to perform a COUNT(*) query. To avoid this call, you can add a counter cache to the belonging model: class Order < ActiveRecord::Base belongs_to :customer, :counter_cache => true end class Customer < ActiveRecord::Base has_many :orders end With this declaration, Rails will keep the cache value up to date, and then return that value in response to the size method. Although the :counter_cache option is specified on the model that includes the belongs_to declaration, the actual column must be added to the associated model. In the case above, you would need to add a column named orders_count to the Customer model. You can override the default column name if you need to: class Order < ActiveRecord::Base belongs_to :customer, :counter_cache => :count_of_orders end class Customer < ActiveRecord::Base has_many :orders end Counter cache columns are added to the containing model’s list of read-only attributes through attr_readonly.
4.1.2.5 :dependent
If you set the :dependent option to :destroy, then deleting this object will call the destroy method on the associated object to delete that object. If you set the :dependent option to :delete, then deleting this object will delete the associated object without calling its destroy method. You should not specify this option on a belongs_to association that is connected with a has_many association on the other class. Doing so can lead to orphaned records in your database.对应多个的话用了dependent的话删除一个和他的外键的话其他关联就失效了
4.1.2.6 :foreign_key
By convention约定, Rails guesses that the column used to hold the foreign key on this model is the name of the association with the suffix _id added. The :foreign_key option lets you set the name of the foreign key directly: class Order < ActiveRecord::Base belongs_to :customer, :class_name => “Patron”, :foreign_key => “patron_id” end In any case, Rails will not create foreign key columns for you. You need to explicitly define them as part of your migrations.
4.1.2.7 :include
You can use the :include option to specify second-order associations that should be eager-loaded when this association is used. For example, consider these models: class LineItem < ActiveRecord::Base belongs_to :order end   class Order < ActiveRecord::Base belongs_to :customer has_many :line_items end   class Customer < ActiveRecord::Base has_many :orders end If you frequently retrieve customers directly from line items (@line_item.order.customer), then you can make your code somewhat more efficient by including customers in the association from line items to orders:如果你频繁的从line_item(@line_item.order.customer)直接检索,那么你可以在line_item关系中包含customers,使得你的代码变得更加有效率: class LineItem < ActiveRecord::Base belongs_to :order, :include => :customer end   class Order < ActiveRecord::Base belongs_to :customer has_many :line_items end   class Customer < ActiveRecord::Base has_many :orders end There’s no need to use :include for immediate立即(直接)associations – that is, if you have Order belongs_to :customer, then the customer is eager-loaded automatically when it’s needed.
4.1.2.8 :polymorphic
Passing true to the :polymorphic option indicates that this is a polymorphic association. Polymorphic associations were discussed in detail earlierinthisguide.
4.1.2.9 :readonly
If you set the :readonly option to true, then the associated object will be read-only when retrieved via the association.
4.1.2.10 :select
The :select option lets you override the SQL SELECT clause that is used to retrieve data about the associated object. By default, Rails retrieves all columns. If you set the :select option on a belongs_to association, you should also set the foreign_key option to guarantee保证the correct results.
4.1.2.11 :touch
If you set the :touch option to :true, then the updated_at or updated_on timestamp on the associated object will be set to the current time whenever this object is saved or destroyed: class Order < ActiveRecord::Base belongs_to :customer, :touch => true end   class Customer < ActiveRecord::Base has_many :orders end In this case, saving or destroying an order will update the timestamp on the associated customer. You can also specify a particular timestamp attribute to update: class Order < ActiveRecord::Base belongs_to :customer, :touch => :orders_updated_at end
4.1.2.12 :validate
If you set the :validate option to true, then associated objects will be validated whenever you save this object. By default, this is false: associated objects will not be validated when this object is saved.
4.1.3 How To Know Whether There’s an Associated Object?怎样知道这里是否有Associated 对象?
To know whether there’s and associated object just check association.nil?: if @order.customer.nil? @msg = “No customer found for this order” end
4.1.4 When are Objects Saved?
Assigning an object to a belongs_to association does not automatically save the object. It does not save the associated object either.

4.2 has_one Association Reference has_one关系参考

The has_one association creates a one-to-one match with another model. In database terms, this association says that the other class contains the foreign key. If this class contains the foreign key, then you should use belongs_to instead.
4.2.1 Methods Added by has_one
When you declare a has_one association, the declaring class automatically gains four methods related to the association:
  • association(force_reload = false)
  • association=(associate)
  • build_association(attributes = {})
  • create_association(attributes = {})
In all of these methods, association is replaced with the symbol passed as the first argument to has_one. For example, given the declaration: class Supplier < ActiveRecord::Base has_one :account end Each instance of the Supplier model will have these methods:每一个Supplier模型的实例将会具有如下方法: account account= build_account create_account When initializing a new has_one or belongs_to association you must use the build_ prefix to build the association, rather than the association.build method that would be used for has_many or has_and_belongs_to_many associations. To create one, use the create_ prefix.
4.2.1.1 association(force_reload = false)
The association method returns the associated object, if any. If no associated object is found, it returns nil. @account = @supplier.account If the associated object has already been retrieved from the database for this object, the cached version will be returned. To override this behavior (and force a database read), pass true as the force_reload argument.
4.2.1.2 association=(associate)
The association= method assigns an associated object to this object. Behind the scenes, this means extracting the primary key from this object and setting the associate object’s foreign key to the same value. @supplier.account = @account
4.2.1.3 build_association(attributes = {})
The build_association method returns a new object of the associated type. This object will be instantiated from the passed attributes, and the link through its foreign key will be set, but the associated object will notyetbesaved. @account = @supplier.build_account(:terms => “Net 30”)
4.2.1.4 create_association(attributes = {})
The create_association method returns a new object of the associated type. This object will be instantiated from the passed attributes, and the link through its foreign key will be set. In addition此外, the associated object willbesaved(assumingthatitpassesanyvalidations). @account = @supplier.create_account(:terms => “Net 30”)
4.2.2 Options for has_one
In many situations, you can use the default behavior of has_one without any customization. But despite Rails’ emphasis of convention over customization, you can alter that behavior in a number of ways. This section covers the options that you can pass when you create a has_one association. For example, an association with several options might look like this: class Supplier < ActiveRecord::Base has_one :account, :class_name => “Billing”, :dependent => :nullify end The has_one association supports these options:
  • :as
  • :autosave
  • :class_name
  • :conditions
  • :dependent
  • :foreign_key
  • :include
  • :order
  • :primary_key
  • :readonly
  • :select
  • :source
  • :source_type
  • :through
  • :validate
4.2.2.1 :as
Setting the :as option indicates that this is a polymorphic association. Polymorphic associations were discussed in detail earlierinthisguide.
4.2.2.2 :autosave
If you set the :autosave option to true, Rails will save any loaded members and destroy members that are marked for destruction whenever you save the parent object.
4.2.2.3 :class_name
If the name of the other model cannot be derived from the association name, you can use the :class_name option to supply the model name. For example, if a supplier has an account, but the actual name of the model containing accounts is Billing, you’d set things up this way: class Supplier < ActiveRecord::Base has_one :account, :class_name => “Billing” end
4.2.2.4 :conditions
The :conditions option lets you specify the conditions that the associated object must meet (in the syntax used by an SQL WHERE clause). class Supplier < ActiveRecord::Base has_one :account, :conditions => “confirmed = 1” end
4.2.2.5 :dependent
If you set the :dependent option to :destroy, then deleting this object will call the destroy method on the associated object to delete that object. If you set the :dependent option to :delete, then deleting this object will delete the associated object without calling its destroy method. If you set the :dependent option to :nullify, then deleting this object will set the foreign key in the association object to NULL.
4.2.2.6 :foreign_key
By convention, Rails guesses that the column used to hold the foreign key on the other model is the name of this model with the suffix _id added添加id后缀. The :foreign_key option lets you set the name of the foreign key directly: class Supplier < ActiveRecord::Base has_one :account, :foreign_key => “supp_id” end In any case, Rails will not create foreign key columns for you. You need to explicitly define them as part of your migrations.
4.2.2.7 :include
You can use the :include option to specify second-order associations that should be eager-loaded when this association is used. For example, consider these models: class Supplier < ActiveRecord::Base has_one :account end   class Account < ActiveRecord::Base belongs_to :supplier belongs_to :representative end   class Representative < ActiveRecord::Base has_many :accounts end If you frequently retrieve representatives directly from suppliers (@supplier.account.representative), then you can make your code somewhat more efficient by including representatives in the association from suppliers to accounts: class Supplier < ActiveRecord::Base has_one :account, :include => :representative end   class Account < ActiveRecord::Base belongs_to :supplier belongs_to :representative end   class Representative < ActiveRecord::Base has_many :accounts end
4.2.2.8 :order
The :order option dictates the order in which associated objects will be received (in the syntax used by an SQL ORDER BY clause). Because a has_one association will only retrieve a single associated object, this option should not be needed.
4.2.2.9 :primary_key
By convention, Rails guesses that the column used to hold the primary key of this model is id. You can override this and explicitly specify the primary key with the :primary_key option.
4.2.2.10 :readonly
If you set the :readonly option to true, then the associated object will be read-only when retrieved via the association.
4.2.2.11 :select
The :select option lets you override the SQL SELECT clause that is used to retrieve data about the associated object. By default, Rails retrieves all columns.
.2.2.12 :source
The :source option specifies the source association name for a has_one :through association.
4.2.2.13 :source_type
The :source_type option specifies the source association type for a has_one :through association that proceeds through a polymorphic association.
4.2.2.14 :through
The :through option specifies a join model through which to perform the query. has_one :through associations were discussed in detail earlierinthisguide.
4.2.2.15 :validate
If you set the :validate option to true, then associated objects will be validated whenever you save this object. By default, this is false: associated objects will not be validated when this object is saved.
4.2.3 How To Know Whether There’s an Associated Object?
To know whether there’s and associated object just check association.nil?: if @supplier.account.nil? @msg = “No account found for this supplier” end
4.2.4 When are Objects Saved?
When you assign an object to a has_one association, that object is automatically saved (in order to update its foreign key). In addition, any object being replaced is also automatically saved, because its foreign key will change too. If either of these saves fails due to validation errors, then the assignment statement returns false and the assignment itself is cancelled. If the parent object (the one declaring the has_one association) is unsaved (that is, new_record? returns true) then the child objects are not saved. They will automatically when the parent object is saved. If you want to assign an object to a has_one association without saving the object, use the association.build method.

4.3 has_many Association Reference

The has_many association creates a one-to-many relationship with another model. In database terms, this association says that the other class will have a foreign key that refers to instances of this class.
4.3.1 Methods Added by has_many
When you declare a has_many association, the declaring class automatically gains 13 methods related to the association: collection(force_reload = false)
  • collection<<(object,)
  • collection.delete(object,)
  • collection=objects
  • collection_singular_ids
  • collection_singular_ids=ids
  • collection.clear
  • collection.empty?
  • collection.size
  • collection.find()
  • collection.where()
  • collection.exists?()
  • collection.build(attributes = {},)
  • collection.create(attributes = {})
In all of these methods, collection is replaced with the symbol passed as the first argument to has_many, and collection_singular is replaced with the singularized version of that symbol.. For example, given the declaration: class Customer < ActiveRecord::Base has_many :orders end Each instance of the customer model will have these methods:   orders(force_reload = false) orders<<(object, …) orders.delete(object, …) orders=objects order_ids order_ids=ids orders.clear orders.empty? orders.size orders.find(…) orders.where(…) orders.exists?(…) orders.build(attributes = {}, …) orders.create(attributes = {})
4.3.1.1 collection(force_reload = false)
The collection method returns an array of all of the associated objects. If there are no associated objects, it returns an empty array. @orders = @customer.orders
4.3.1.2 collection<<(object,)
The collection<< method adds one or more objects to the collection by setting their foreign keys to the primary key of the calling model. @customer.orders << @order1
4.3.1.3 collection.delete(object,)
The collection.delete method removes one or more objects from the collection by setting their foreign keys to NULL. @customer.orders.delete(@order1) Additionally, objects will be destroyed if they’re associated with :dependent => :destroy, and deleted if they’re associated with :dependent => :delete_all.
4.3.1.4 collection=objects
The collection= method makes the collection contain only the supplied objects, by adding and deleting as appropriate.
4.3.1.5 collection_singular_ids
The collection_singular_ids method returns an array of the ids of the objects in the collection. @order_ids = @customer.order_ids
4.3.1.6 collection_singular_ids=ids
The collection_singular_ids= method makes the collection contain only the objects identified确定by the supplied primary key values, by adding and deleting as appropriate适当.
4.3.1.7 collection.clear
The collection.clear method removes every object from the collection. This destroys the associated objects if they are associated with :dependent => :destroy, deletes them directly from the database if :dependent => :delete_all, and otherwise sets their foreign keys to NULL.
4.3.1.8 collection.empty?
The collection.empty? method returns true if the collection does not contain any associated objects. <% if @customer.orders.empty? %> No Orders Found <% end %>
4.3.1.9 collection.size
The collection.size method returns the number of objects in the collection. @order_count = @customer.orders.size
4.3.1.10 collection.find()
The collection.find method finds objects within the collection. It uses the same syntax and options as ActiveRecord::Base.find. @open_orders = @customer.orders.where(:open => 1)
4.3.1.11 collection.where()
The collection.where method finds objects within the collection based on the conditions supplied but the objects are loaded lazily meaning that the database is queried only when the object(s) are accessed. @open_orders = @customer.orders.where(:open => true) # No query yet @open_order = @open_orders.first # Now the database will be queried
4.3.1.12 collection.exists?()
The collection.exists? method checks whether an object meeting the supplied conditions exists in the collection. It uses the same syntax and options as ActiveRecord::Base.exists?.
4.3.1.13 collection.build(attributes = {},)
The collection.build method returns one or more new objects of the associated type. These objects will be instantiated from the passed attributes, and the link through their foreign key will be created, but the associated objects will not yet be saved. @order = @customer.orders.build(:order_date => Time.now, :order_number => “A12345”)
4.3.1.14 collection.create(attributes = {})
The collection.create method returns a new object of the associated type. This object will be instantiated from the passed attributes, the link through its foreign key will be created, and the associated object will be saved (assuming that it passes any validations). @order = @customer.orders.create(:order_date => Time.now, :order_number => “A12345”)
4.3.2 Options for has_many
In many situations, you can use the default behavior for has_many without any customization. But you can alter that behavior in a number of ways. This section covers the options that you can pass when you create a has_many association. For example, an association with several options might look like this: class Customer < ActiveRecord::Base has_many :orders, :dependent => :delete_all, :validate => :false end The has_many association supports these options:
  • :as
  • :autosave
  • :class_name
  • :conditions
  • :counter_sql
  • :dependent
  • :extend
  • :finder_sql
  • :foreign_key
  • :group
  • :include
  • :limit
  • :offset
  • :order
  • :primary_key
  • :readonly
  • :select
  • :source
  • :source_type
  • :through
  • :uniq
  • :validate
4.3.2.1 :as
Setting the :as option indicates that this is a polymorphic association, as discussed earlierinthisguide.
4.3.2.2 :autosave
If you set the :autosave option to true, Rails will save any loaded members and destroy members that are marked for destruction whenever you save the parent object.
4.3.2.3 :class_name
If the name of the other model cannot be derived from the association name, you can use the :class_name option to supply the model name. For example, if a customer has many orders, but the actual name of the model containing orders is Transaction, you’d set things up this way: class Customer < ActiveRecord::Base has_many :orders, :class_name => “Transaction” end
4.3.2.4 :conditions
The :conditions option lets you specify the conditions that the associated object must meet (in the syntax used by an SQL WHERE clause). class Customer < ActiveRecord::Base has_many :confirmed_orders, :class_name => “Order”, :conditions => “confirmed = 1” end You can also set conditions via a hash: class Customer < ActiveRecord::Base has_many :confirmed_orders, :class_name => “Order”, :conditions => { :confirmed => true } end If you use a hash-style :conditions option, then record creation via this association will be automatically scoped using the hash. In this case, using @customer.confirmed_orders.create or @customer.confirmed_orders.build will create orders where the confirmed column has the value true. if you need to evaluate conditions dynamically at runtime, use a proc:
4.3.2.5 :counter_sql
Normally Rails automatically generates the proper SQL to count the association members. With the :counter_sql option, you can specify a complete SQL statement to count them yourself. If you specify :finder_sql but not :counter_sql, then the counter SQL will be generated by substituting SELECT COUNT(*) FROM for the SELECT FROM clause of your :finder_sql statement.
4.3.2.6 :dependent
If you set the :dependent option to :destroy(删除映射链和映射对象), then deleting this object will call the destroy method on the associated objects to delete those objects. If you set the :dependent option to :delete_all(只删除映射链), then deleting this object will delete the associated objects without calling their destroy method. If you set the :dependent option to :nullify, then deleting this object will set the foreign key in the associated objects to NULL. This option is ignored when you use the :through option on the association.
4.3.2.7 :extend
The :extend option specifies a named module to extend the association proxy. Association extensions are discussed in detail laterinthisguide.
4.3.2.8 :finder_sql
Normally Rails automatically generates the proper SQL to fetch the association members. With the :finder_sql option, you can specify a complete SQL statement to fetch them yourself. If fetching objects requires complex multi-table SQL, this may be necessary.
4.3.2.9 :foreign_key
By convention, Rails guesses that the column used to hold the foreign key on the other model is the name of this model with the suffix _id added添加前缀. The :foreign_key option lets you set the name of the foreign key directly: In any case, Rails will not create foreign key columns for you. You need to explicitly define them as part of your migrations.
4.3.2.10 :group
The :group option supplies an attribute name to group the result set by, using a GROUP BY clause in the finder SQL. class Customer < ActiveRecord::Base has_many :line_items, :through => :orders, :group => “orders.id” end
4.3.2.11 :include
You can use the :include option to specify second-order associations that should be eager-loaded when this association is used. For example, consider these models: class Customer < ActiveRecord::Base has_many :orders end   class Order < ActiveRecord::Base belongs_to :customer has_many :line_items end   class LineItem < ActiveRecord::Base belongs_to :order end If you frequently retrieve line items directly from customers (@customer.orders.line_items), then you can make your code somewhat more efficient by including line items in the association from customers to orders: class Customer < ActiveRecord::Base has_many :orders, :include => :line_items end   class Order < ActiveRecord::Base belongs_to :customer has_many :line_items end   class LineItem < ActiveRecord::Base belongs_to :order end
4.3.2.12 :limit
The :limit option lets you restrict the total number of objects that will be fetched through an association. class Customer < ActiveRecord::Base has_many :recent_orders, :class_name => “Order”, :order => “order_date DESC”, :limit => 100 end
4.3.2.13 :offset
The :offset option lets you specify the starting offset for fetching objects via an association. For example, if you set :offset => 11, it will skip the first 11 records.
4.3.2.14 :order
The :order option dictates the order in which associated objects will be received (in the syntax used by an SQL ORDER BY clause). class Customer < ActiveRecord::Base has_many :orders, :order => “date_confirmed DESC” end
4.3.2.15 :primary_key
By convention, Rails guesses that the column used to hold the primary key of the association is id. You can override this and explicitly specify the primary key with the :primary_key option.
4.3.2.16 :readonly
If you set the :readonly option to true, then the associated objects will be read-only when retrieved via the association.
4.3.2.17 :select
The :select option lets you override the SQL SELECT clause that is used to retrieve data about the associated objects. By default, Rails retrieves all columns. If you specify your own :select, be sure to include the primary key and foreign key columns of the associated model. If you do not, Rails will throw an error.
4.3.2.18 :source
The :source option specifies the source association name for a has_many :through association. You only need to use this option if the name of the source association cannot be automatically inferred from the association name.
4.3.2.19 :source_type
The :source_type option specifies the source association type for a has_many :through association that proceeds through a polymorphic association.
4.3.2.20 :through
The :through option specifies a join model through which to perform the query. has_many :through associations provide a way to implement many-to-many relationships, as discussed earlierinthisguide.
4.3.2.21 :uniq
Set the :uniq option to true to keep the collection free of duplicates. This is mostly useful together with the :through option. class Person < ActiveRecord::Base has_many :readings has_many :posts, :through => :readings end   person = Person.create(:name => ‘john’) post = Post.create(:name => ‘a1’) person.posts << post person.posts << post person.posts.inspect # => [#<Post id: 5, name: “a1”>, #<Post id: 5, name: “a1”>] Reading.all.inspect # => [#<Reading id: 12, person_id: 5, post_id: 5>, #<Reading id: 13, person_id: 5, post_id: 5>] In the above case there are two readings and person.posts brings out both of them even though these records are pointing to the same post. Now let’s set :uniq to true: class Person has_many :readings has_many :posts, :through => :readings, :uniq => true end   person = Person.create(:name => ‘honda’) post = Post.create(:name => ‘a1’) person.posts << post person.posts << post person.posts.inspect # => [#<Post id: 7, name: “a1”>] Reading.all.inspect # => [#<Reading id: 16, person_id: 7, post_id: 7>, #<Reading id: 17, person_id: 7, post_id: 7>] In the above case there are still two readings. However person.posts shows only one post because the collection loads only unique records.
4.3.2.22 :validate
If you set the :validate option to false, then associated objects will not be validated whenever you save this object. By default, this is true: associated objects will be validated when this object is saved.
4.3.3 When are Objects Saved?
When you assign an object to a has_many association, that object is automatically saved (in order to update its foreign key). If you assign multiple objects in one statement, then they are all saved. If any of these saves fails due to validation errors, then the assignment statement returns false and the assignment itself is cancelled. If the parent object (the one declaring the has_many association) is unsaved (that is, new_record? returns true) then the child objects are not saved when they are added. All unsaved members of the association will automatically be saved when the parent is saved. If you want to assign an object to a has_many association without saving the object, use the collection.build method.

4.4 has_and_belongs_to_many Association Reference

The has_and_belongs_to_many association creates a many-to-many relationship with another model. In database terms, this associates two classes via an intermediate join table that includes foreign keys referring to each of the classes.
4.4.1 Methods Added by has_and_belongs_to_many
When you declare a has_and_belongs_to_many association, the declaring class automatically gains 13 methods related to the association:
  • collection(force_reload = false)
  • collection<<(object,)
  • collection.delete(object,)
  • collection=objects
  • collection_singular_ids
  • collection_singular_ids=ids
  • collection.clear
  • collection.empty?
  • collection.size
  • collection.find()
  • collection.where()
  • collection.exists?()
  • collection.build(attributes = {})
  • collection.create(attributes = {})
In all of these methods, collection is replaced with the symbol passed as the first argument to has_and_belongs_to_many, and collection_singular is replaced with the singularized version of that symbol. For example, given the declaration: class Part < ActiveRecord::Base has_and_belongs_to_many :assemblies end Each instance of the part model will have these methods: assemblies(force_reload = false) assemblies<<(object, …) assemblies.delete(object, …) assemblies=objects assembly_ids assembly_ids=ids assemblies.clear assemblies.empty? assemblies.size assemblies.find(…) assemblies.where(…) assemblies.exists?(…) assemblies.build(attributes = {}, …) assemblies.create(attributes = {})
4.4.1.1 Additional Column Methods
If the join table for a has_and_belongs_to_many association has additional columns beyond the two foreign keys, these columns will be added as attributes to records retrieved via that association. Records returned with additional attributes will always be read-only, because Rails cannot save changes to those attributes. The use of extra attributes on the join table in a has_and_belongs_to_many association is deprecated. If you require this sort of complex behavior on the table that joins two models in a many-to-many relationship, you should use a has_many :through association instead of has_and_belongs_to_many.
4.4.1.2 collection(force_reload = false)
The collection method returns an array of all of the associated objects. If there are no associated objects, it returns an empty array. @assemblies = @part.assemblies
4.4.1.3 collection<<(object,)
The collection<< method adds one or more objects to the collection by creating records in the join table. @part.assemblies << @assembly1 This method is aliased as collection.concat and collection.push.
4.4.1.4 collection.delete(object,)
The collection.delete method removes one or more objects from the collection by deleting records in the join table. This does not destroy the objects. @part.assemblies.delete(@assembly1)
4.4.1.5 collection=objects
The collection= method makes the collection contain only the supplied objects, by adding and deleting as appropriate.
4.4.1.6 collection_singular_ids
The collection_singular_ids method returns an array of the ids of the objects in the collection. @assembly_ids = @part.assembly_ids
4.4.1.7 collection_singular_ids=ids
The collection_singular_ids= method makes the collection contain only the objects identified by the supplied primary key values, by adding and deleting as appropriate.
4.4.1.8 collection.clear
The collection.clear method removes every object from the collection by deleting the rows from the joining table. This does not destroy the associated objects.
4.4.1.9 collection.empty?
The collection.empty? method returns true if the collection does not contain any associated objects. <% if @part.assemblies.empty? %> This part is not used in any assemblies <% end %>
4.4.1.10 collection.size
The collection.size method returns the number of objects in the collection. @assembly_count = @part.assemblies.size
4.4.1.11 collection.find()
The collection.find method finds objects within the collection. It uses the same syntax and options as ActiveRecord::Base.find. It also adds the additional condition that the object must be in the collection. @new_assemblies = @part.assemblies.all( :conditions => [“created_at > ?”, 2.days.ago]) Starting Rails 3, supplying options to ActiveRecord::Base.find method is discouraged. Use collection.where instead when you need to pass conditions.
4.4.1.12 collection.where()
The collection.where method finds objects within the collection based on the conditions supplied but the objects are loaded lazily meaning that the database is queried only when the object(s) are accessed. It also adds the additional condition that the object must be in the collection. @new_assemblies = @part.assemblies.where(“created_at > ?”, 2.days.ago)
4.4.1.13 collection.exists?()
The collection.exists? method checks whether an object meeting the supplied conditions exists in the collection. It uses the same syntax and options as ActiveRecord::Base.exists?.
4.4.1.14 collection.build(attributes = {})
The collection.build method returns a new object of the associated type. This object will be instantiated from the passed attributes, and the link through the join table will be created, but the associated object will not yet be saved. @assembly = @part.assemblies.build( {:assembly_name => “Transmission housing”})
4.4.1.15 collection.create(attributes = {})
The collection.create method returns a new object of the associated type. This object will be instantiated from the passed attributes, the link through the join table will be created, and the associated object will be saved (assuming that it passes any validations). @assembly = @part.assemblies.create( {:assembly_name => “Transmission housing”})
4.4.2 Options for has_and_belongs_to_many
In many situations, you can use the default behavior for has_and_belongs_to_many without any customization. But you can alter that behavior in a number of ways. This section covers the options that you can pass when you create a has_and_belongs_to_many association. For example, an association with several options might look like this: class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :uniq => true, :read_only => true end The has_and_belongs_to_many association supports these options:
  • :association_foreign_key
  • :autosave
  • :class_name
  • :conditions
  • :counter_sql
  • :delete_sql
  • :extend
  • :finder_sql
  • :foreign_key
  • :group
  • :include
  • :insert_sql
  • :join_table
  • :limit
  • :offset
  • :order
  • :readonly
  • :select
  • :uniq
  • :validate
4.4.2.1 :association_foreign_key
By convention, Rails guesses that the column in the join table used to hold the foreign key pointing to the other model is the name of that model with the suffix _id added. The :association_foreign_key option lets you set the name of the foreign key directly: The :foreign_key and :association_foreign_key options are useful when setting up a many-to-many self-join. For example: class User < ActiveRecord::Base has_and_belongs_to_many :friends, :class_name => “User”, :foreign_key => “this_user_id”, :association_foreign_key => “other_user_id” end
4.4.2.2 :autosave
If you set the :autosave option to true, Rails will save any loaded members and destroy members that are marked for destruction whenever you save the parent object.
4.4.2.3 :class_name
If the name of the other model cannot be derived from the association name, you can use the :class_name option to supply the model name. For example, if a part has many assemblies, but the actual name of the model containing assemblies is Gadget, you’d set things up this way: class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :class_name => “Gadget” end
4.4.2.4 :conditions
The :conditions option lets you specify the conditions that the associated object must meet (in the syntax used by an SQL WHERE clause). class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :conditions => “factory = ‘Seattle’” end You can also set conditions via a hash: class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :conditions => { :factory => ‘Seattle’ } end If you use a hash-style :conditions option, then record creation via this association will be automatically scoped using the hash. In this case, using @parts.assemblies.create or @parts.assemblies.build will create orders where the factory column has the value “Seattle”.
4.4.2.5 :counter_sql
Normally Rails automatically generates the proper SQL to count the association members. With the :counter_sql option, you can specify a complete SQL statement to count them yourself. If you specify :finder_sql but not :counter_sql, then the counter SQL will be generated by substituting SELECT COUNT(*) FROM for the SELECT FROM clause of your :finder_sql statement.
4.4.2.6 :delete_sql
Normally Rails automatically generates the proper SQL to remove links between the associated classes. With the :delete_sql option, you can specify a complete SQL statement to delete them yourself.
4.4.2.7 :extend
The :extend option specifies a named module to extend the association proxy. Association extensions are discussed in detail laterinthisguide.
4.4.2.8 :finder_sql
Normally Rails automatically generates the proper SQL to fetch the association members. With the :finder_sql option, you can specify a complete SQL statement to fetch them yourself. If fetching objects requires complex multi-table SQL, this may be necessary.
4.4.2.9 :foreign_key
By convention, Rails guesses that the column in the join table used to hold the foreign key pointing to this model is the name of this model with the suffix _id added. The :foreign_key option lets you set the name of the foreign key directly: class User < ActiveRecord::Base has_and_belongs_to_many :friends, :class_name => “User”, :foreign_key => “this_user_id”, :association_foreign_key => “other_user_id” end
4.4.2.10 :group
The :group option supplies an attribute name to group the result set by, using a GROUP BY clause in the finder SQL. class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :group => “factory” end
4.4.2.11 :include
You can use the :include option to specify second-order associations that should be eager-loaded when this association is used.
4.4.2.12 :insert_sql
Normally Rails automatically generates the proper SQL to create links between the associated classes. With the :insert_sql option, you can specify a complete SQL statement to insert them yourself.
4.4.2.13 :join_table
If the default name of the join table, based on lexical ordering, is not what you want, you can use the :join_table option to override the default.
4.4.2.14 :limit
The :limit option lets you restrict the total number of objects that will be fetched through an association. class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :order => “created_at DESC”, :limit => 50 end
4.4.2.15 :offset
The :offset option lets you specify the starting offset for fetching objects via an association. For example, if you set :offset => 11, it will skip the first 11 records.
4.4.2.16 :order
The :order option dictates the order in which associated objects will be received (in the syntax used by an SQL ORDER BY clause). class Parts < ActiveRecord::Base has_and_belongs_to_many :assemblies, :order => “assembly_name ASC” end
4.4.2.17 :readonly
If you set the :readonly option to true, then the associated objects will be read-only when retrieved via the association.
4.4.2.18 :select
The :select option lets you override the SQL SELECT clause that is used to retrieve data about the associated objects. By default, Rails retrieves all columns.
4.4.2.19 :uniq
Specify the :uniq => true option to remove duplicates from the collection.
4.4.2.20 :validate
If you set the :validate option to false, then associated objects will not be validated whenever you save this object. By default, this is true: associated objects will be validated when this object is saved.
4.4.3 When are Objects Saved?
When you assign an object to a has_and_belongs_to_many association, that object is automatically saved (in order to update the join table). If you assign multiple objects in one statement, then they are all saved. If any of these saves fails due to validation errors, then the assignment statement returns false and the assignment itself is cancelled. If the parent object (the one declaring the has_and_belongs_to_many association) is unsaved (that is, new_record? returns true) then the child objects are not saved when they are added. All unsaved members of the association will automatically be saved when the parent is saved. If you want to assign an object to a has_and_belongs_to_many association without saving the object, use the collection.build method.

4.5 Association Callbacks

Normal callbacks hook into the life cycle of Active Record objects, allowing you to work with those objects at various points. For example, you can use a :before_save callback to cause something to happen just before an object is saved. Association callbacks are similar to normal callbacks, but they are triggered by events in the life cycle of a collection. There are four available association callbacks:
  • before_add
  • after_add
  • before_remove
  • after_remove
You define association callbacks by adding options to the association declaration. For example: class Customer < ActiveRecord::Base has_many :orders, :before_add => :check_credit_limit   def check_credit_limit(order) … end end You can stack callbacks on a single event by passing them as an array: class Customer < ActiveRecord::Base has_many :orders, :before_add => [:check_credit_limit, :calculate_shipping_charges]   def check_credit_limit(order) … end   def calculate_shipping_charges(order) … end end If a before_add callback throws an exception, the object does not get added to the collection. Similarly, if a before_remove callback throws an exception, the object does not get removed from the collection.

4.6 Association Extensions

You’re not limited to the functionality that Rails automatically builds into association proxy objects. You can also extend these objects through anonymous modules, adding new finders, creators, or other methods. For example: class Customer < ActiveRecord::Base has_many :orders do def find_by_order_prefix(order_number) find_by_region_id(order_number[0..2]) end end end If you have an extension that should be shared by many associations, you can use a named extension module. For example: module FindRecentExtension def find_recent where(“created_at > ?”, 5.days.ago) end end   class Customer < ActiveRecord::Base has_many :orders, :extend => FindRecentExtension end   class Supplier < ActiveRecord::Base has_many :deliveries, :extend => FindRecentExtension end To include more than one extension module in a single association, specify an array of modules: class Customer < ActiveRecord::Base has_many :orders, :extend => [FindRecentExtension, FindActiveExtension] end Extensions can refer to the internals of the association proxy using these three accessors访问器:
  • proxy_owner returns the object that the association is a part of.
  • proxy_reflection returns the reflection object that describes the association.
  • proxy_target returns the associated object for belongs_to or has_one, or the collection of associated objects for has_many or has_and_belongs_to_many.
  Now,supposewewantedtoaddaneworderforanexistingcustomer.We’dneedtodosomethinglikethis:现在假设我们想为一个存在的customer添加一个新的order。我们需要做如下事情:
标签: guide rails ruby