提交 83d4ce6a 编写于 作者: V Vijay Dev

Revert "Documents that ActiveRecord instances also support []/[]= methods for...

Revert "Documents that ActiveRecord instances also support []/[]= methods for reading/writing attributes"

This reverts commit a49fe6ec.

Reason: The existing doc about using self[:attribute] is clear enough.
上级 59164039
......@@ -114,29 +114,23 @@ module ActiveRecord #:nodoc:
# Student.joins(:schools).where(:schools => { :category => 'public' })
# Student.joins(:schools).where('schools.category' => 'public' )
#
# == Dynamic assignment
#
# Sometimes it can be useful to assign some attributes dynamically. You can use
# <tt>read_attribute(attr_name, value)</tt>/<tt>write_attribute(attr_name)</tt>
# or through model[attr_name]/model[attr_name]=:
#
# [:deleted, :disabled].each{|p| model[p] = params[p] == 'true' }
#
# == Overwriting default accessors
#
# All column values are automatically available through basic accessors on the Active Record
# object, but sometimes you want to specialize this behavior. This can be done by overwriting
# the default accessors (using the same name as the attribute):
# the default accessors (using the same name as the attribute) and calling
# <tt>read_attribute(attr_name)</tt> and <tt>write_attribute(attr_name, value)</tt> to actually
# change things.
#
# class Song < ActiveRecord::Base
# # Uses an integer of seconds to hold the length of the song
#
# def length=(minutes)
# write_attribute(:length, minutes.to_i * 60) # or: self[:length] = minutes.to_i * 60
# write_attribute(:length, minutes.to_i * 60)
# end
#
# def length
# read_attribute(:length) / 60 # or: self[:length] / 60
# read_attribute(:length) / 60
# end
# end
#
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册