gpt4 book ai didi

ruby-on-rails - 密码不能为空,Bcrypt

转载 作者:行者123 更新时间:2023-12-01 11:42:32 24 4
gpt4 key购买 nike

在我的 Rails 应用程序上安装 Bcrypt 后,即使填写了表单,也存在验证问题:密码=>“不能为空”:

这是我的用户模型

class User < ActiveRecord::Base   
before_save { self.email = email.downcase }
validates :username, presence: true, length: { maximum: 50 }

VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i

validates :email, presence: true,
format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
has_secure_password
validates :password, length: { minimum: 6 }
end

我在 rails c 中尝试过,现在出现了摘要:

用户创建:
User.create(username: "Riprova", email:"testato@gmail.com", password: "nonfunzia", password_confirmation:"nonfunzia")

<User id: 15, username: "Riprova", name: nil, surname: nil, email: "testato@gmail.com", gender: nil, birth: nil, created_at: "2013-08-11 15:35:03", updated_at: "2013-08-11 15:35:03", password_digest: "$2a$10$Q/5qtZYDXRcFsUWgve3JL.wui4hSHLhGgsuO0C6TTkBY...">

用户 Controller :
class UsersController < ApplicationController
before_action :set_user, only: [:show, :edit, :update, :destroy]

# GET /users
# GET /users.json
def index
@users = User.all
end

# GET /users/1
# GET /users/1.json
def show
end

# GET /users/new
def new
@user = User.new
end

# GET /users/1/edit
def edit
end

# POST /users
# POST /users.json
def create
@user = User.new(user_params)

respond_to do |format|
if @user.save
format.html { redirect_to @user, notice: 'User was successfully created.' }
format.json { render action: 'show', status: :created, location: @user }
else
format.html { render action: 'new' }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end

# PATCH/PUT /users/1
# PATCH/PUT /users/1.json
def update
respond_to do |format|
if @user.update(user_params)
format.html { redirect_to @user, notice: 'User was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end

# DELETE /users/1
# DELETE /users/1.json
def destroy
@user.destroy
respond_to do |format|
format.html { redirect_to users_url }
format.json { head :no_content }
end
end

private
# Use callbacks to share common setup or constraints between actions.
def set_user
@user = User.find(params[:id])
end

# Never trust parameters from the scary internet, only allow the white list through.
def user_params
params.require(:user).permit(:username, :name, :surname, :email, :bids_left, :bids_left_free, :gender, :birth)
end
end

最佳答案

如果您使用 Rails 3.x,则需要添加 attr_accessible :password否则该参数将被禁止。在 Rails 4 上,请参阅 strong parameters .密码参数可能被过滤掉了。其他人(如用户名)也可能如此。

关于ruby-on-rails - 密码不能为空,Bcrypt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18172982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com