请帮帮我。我正在尝试修复基于Railscast 250和270的身份验证。 我使用的是rails 4.0.0和ruby 2.0。此外,我是一个极端的初学者,只有互联网作为指导,尽管由评估员评分。这是我在stackoverflow上的第一篇文章。
我得到的错误是:
UsersController中的RuntimeError #create 新记录中缺少密码摘要
代码:
def create
@user = User.new(params[:user])
if @user.save
redirect_to root_url, :notice => "Signed up!"
else
render "new"
哪个来自我的用户控制器。 该控制器的完整代码现在是:
class UsersController < ApplicationController
def new
@user = User.new
end
def create
@user = User.new(user_params)
if @user.save
redirect_to root_url, :notice => "Signed up!"
else
render "new"
end
end
private
def user_params
params.require(:user).permit(:email, :name, :password, :password_confirmation)
end
end
我的用户模型如下所示:
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation
has_secure_password
validates_presence_of :password, :on => :create
attr_accessor :password_salt
attr_accessor :password
attr_accessor :password_hash
before_save :encrypt_password
validates_presence_of :email
#validates_uniqueness_of :email
def self.authenticate(email, password)
user = find_by_email(email)
if user && user.password_hash == BCrypt::Engine.hash_secret(password, user.password_salt)
user
else
nil
end
end
def encrypt_password
if password.present?
self.password_salt = BCrypt::Engine.generate_salt
self.password_hash = BCrypt::Engine.hash_secret(password, password_salt)
end
end
end