跳至内容 跳至搜索
方法
A
R

实例公共方法

attr_readonly(*attributes)

列出的属性将被用作只读属性来创建新的记录。如果在持久化记录中为只读属性赋值,则会引发错误。

通过将config.active_record.raise_on_assign_to_attr_readonly设置为false,它不会引发错误。该值将在内存中更改,但不会在save时持久化。

示例

class Post < ActiveRecord::Base
  attr_readonly :title
end

post = Post.create!(title: "Introducing Ruby on Rails!")
post.title = "a different title" # raises ActiveRecord::ReadonlyAttributeError
post.update(title: "a different title") # raises ActiveRecord::ReadonlyAttributeError
# File activerecord/lib/active_record/readonly_attributes.rb, line 30
def attr_readonly(*attributes)
  self._attr_readonly |= attributes.map(&:to_s)

  if ActiveRecord.raise_on_assign_to_attr_readonly
    include(HasReadonlyAttributes)
  end
end

readonly_attributes()

返回所有指定为只读属性的属性数组。

# File activerecord/lib/active_record/readonly_attributes.rb, line 39
def readonly_attributes
  _attr_readonly
end