【发布时间】:2017-01-09 04:31:14
【问题描述】:
我在 gem 中使用了 devide,现在我制作了注册和登录页面。 当我在我的应用程序中写我的 id 和电子邮件地址时,Blowser 告诉我 1 错误禁止保存此用户:Id 不能为空。当然,我肯定写了 id,所以我不知道为什么。 这是鼓风机错误吗? 我在 home_controller 里写的,
class HomeController < ApplicationController
before_filter :find_user, only: [:index]
def index
# @id = params[:id]
# @email = params[:email]
if id == @user.id && email == @user.email
render :text => "sucsess"
else
render :text => "fail"
end
end
def create
id = params[:id]
email = params[:email]
@user = UserData.new(user_params)
@user.save
unless userData.save
@error_message = errors.full_messages.compact
end
end
private
def find_user
user = User.find(params[:id])
if current_user.id != user.id
redirect_to root_path
end
end
end
在 users.rb 中
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :omniauthable
validates :id, presence: true
validates :email, presence: true, uniqueness: true
end
在迁移文件中
class DeviseCreateUsers < ActiveRecord::Migration
def change
create_table(:users) do |t|
## Database authenticatable
t.string :email, null: false, default: ""
t.string :encrypted_password, null: false, default: ""
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
## Rememberable
t.datetime :remember_created_at
## Trackable
t.integer :sign_in_count, default: 0, null: false
t.datetime :current_sign_in_at
t.datetime :last_sign_in_at
t.string :current_sign_in_ip
t.string :last_sign_in_ip
## Confirmable
# t.string :confirmation_token
# t.datetime :confirmed_at
# t.datetime :confirmation_sent_at
# t.string :unconfirmed_email # Only if using reconfirmable
## Lockable
# t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
# t.string :unlock_token # Only if unlock strategy is :email or :both
# t.datetime :locked_at
t.timestamps null: false
end
add_index :users, :email, unique: true
add_index :users, :reset_password_token, unique: true
# add_index :users, :confirmation_token, unique: true
# add_index :users, :unlock_token, unique: true
end
end
在 routes.rb 中
Rails.application.routes.draw do
get 'notes/new'
devise_for :users
root to: "home#index"
get 'home/index'
get 'home/create'
namespace :home, default: {format: :json} do
resources :index, only: :create
end
end
【问题讨论】:
-
创建用户时不需要设置
id。它应该是自动生成的。 -
thx,我在创建操作中删除了 id = params[:id],但我得到了同样的错误。
-
你能在 Rails 控制台中创建用户吗?不提供身份证。
-
另外,请出示
user_params
标签: ruby-on-rails ruby