我正在尝试通过控制台将用户添加到表用户:u = User.new但我总是收到错误 未定义的方法`has_many'对于ActiveRecord:模块 ,我尝试了很多解决方案,但没有任何帮助,所以我尝试删除has_many关系以避免错误我得到相同的错误,但使用 未定义的方法' attr_accessor' 或者当我删除attr_accessor 未定义的方法' before_save' 时,我得到了。我有另外4个模型,这是消息后友情评论。
这是我的用户模型
class User < ActiveRecord::
has_many :posts
has_many :comments
has_many :messages
has_many :friendships
has_many :friends , through=> :friendships
attr_accessor :email, :password
before_save :encrypt_password
after_save :clear_password
validates_prescence_of :first_name
validates_prescence_of :last_name
validates :password, presence: true, length: { minimum: 6 }
validates_prescence_of :email
validates_uniqueness_of :email , uniqueness: { case_sensitive: false }
validates_prescence_of :gender
validate :that_born_on_is_not_in_the_future
def self.authenticate(email, password)
user = find_by_email(email)
if ((user && user.password_hash) == (BCrypt::Engine.hash_secret(password, user.salt)))
user
else
nil
end
end
def encrypt_password
if password.present?
self.salt = BCrypt::Engine.generate_salt
self.hash = BCrypt::Engine.hash_secret(password, salt)
end
end
def clear_password
self.password = nil
end
def that_born_on_is_not_in_the_future
self.errors.add :birth_date, 'is in the future' \
unless self.birth_date <= Date.today end
end
提前致谢。
答案 0 :(得分:2)
这可能会导致错误。
class User < ActiveRecord::
ActiveRecord
是一个模块,类是Base
。它应该是
class User < ActiveRecord::Base