0

这是一个简单的注册应用程序

架构.rb

create_table "users", :force => true do |t|
t.string   "email"
t.string   "password_hash"
t.string   "password_salt"
t.datetime "created_at",    :null => false
t.datetime "updated_at",    :null => false

用户.rb

attr_accessible :email, :password, :password_confirmation
attr_accessor :password
before_save :encrypt_password
validates_confirmation_of :password
validates_presence_of :password, :on => :create
validates_presence_of :email
validates_uniqueness_of :email
.
.
.

为什么在 attr_accessible 和 attr_accessor 中都使用密码?

当我在 Rails 控制台中删除 attr_accessor :password 时,执行时出现错误:

user = User.new
user.password # => no method error

但是当我执行这个时:

user = User.new
user.email # => nil

这意味着 user.email 没有在 attr_accessor 中添加它就可以工作,为什么?!

这也有效:

user = User.new
user.password_confirmation # => nil

但是当我删除时:

validates_confirmation_of :password

它不会工作,为什么??

4

1 回答 1

8

attr_accessorattr_accessible尽管拼写几乎相同,但它们是完全不同的方法。

attr_accessor,一个原生 Ruby 方法,它为类的实例定义了一个 getter 和一个 setter 方法:

class User
  attr_accessor :password
end

u = User.new
u.password = "secret"
u.password # => "secret"

attr_accessible是 Rails 带来的一种方法,它旨在将模型的现有属性“列入白名单”。attr_accessible中枚举的属性可以稍后通过模型属性的批量分配来更改(而其他属性将被列入黑名单且不可更改):

class Account < ActiveRecord::Base
  # First, you define 2 attributes: "password" and "created_at"
  attr_accessor :password
  attr_accessor :created_at

  # Now you say that you want "password" attribute
  # to be changeable via mass-assignment, while making
  # "created_at" to be non-changeable via mass-assignment
  attr_accessible :password
end

a = Account.new

# Perform mass-assignment (which is usually done when you update
# your model using the attributes submitted via a web form)
a.update_attributes(:password => "secret", :created_at => Time.now)

a.password # => "secret"
# "password" is changed

a.created_at # => nil
# "created_at" remains not changed

您使用attr_accessible来防止“外部人员”干预您的模型的某些属性(例如,您不希望通过简单的表单提交来更改您的“Account.superadmin”属性,这将是一个糟糕的安全问题)。

请注意,您可以单独更改属性,而不管它们的“白名单/黑名单”状态如何:

a.created_at = Time.now

a.created_at # => 2012-09-16 10:03:14
于 2012-09-16T06:09:51.383 回答