use*_*899 3 ruby-on-rails devise
我在Rails中使用devise,现在无法注销我的用户。
当我使用users / log_out页面时,它出现以下错误:
ActiveRecord::RecordNotFound in UsersController#show
Couldn't find User with 'id'=sign_out
Run Code Online (Sandbox Code Playgroud)
无论如何,这是我的用户控制器:
class UsersController < ApplicationController
def new
@user = User.new
end
def create
@user = User.new(user_params)
if @user.save
redirect_to users_path
else
render 'new'
end
end
def index
@users=User.all
end
def edit
@user = User.find(params[:id])
end
def destroy
@user = User.find(params[:id])
@user.destroy
redirect_to users_path
end
def update
@user = User.find(params[:id])
if @user.update_attributes(user_params)
redirect_to user_path(@user.id)
else
render 'edit'
end
end
def show
@user = User.find(params[:id])
end
private
def user_params
params.require(:user).permit(:name, :email, :password)
end
end
Run Code Online (Sandbox Code Playgroud)
我的route.rb:
Rails.application.routes.draw do
devise_for :users do
get "/users/sign_out" => "devise/sessions#destroy", :as => :destroy_user_session
end
resources :posts
resources :users
end
Run Code Online (Sandbox Code Playgroud)
我的迁移文件旨在:
class AddDeviseToUsers < ActiveRecord::Migration
def self.up
change_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
# Uncomment below if timestamps were not included in your original model.
# t.timestamps
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
def self.down
# By default, we don't want to make any assumption about how to roll back a migration when your
# model already existed. Please edit below which fields you would like to remove in this migration.
raise ActiveRecord::IrreversibleMigration
end
end
Run Code Online (Sandbox Code Playgroud)
应用程序跟踪如下:
app/controllers/users_controller.rb:40:in `show'
Run Code Online (Sandbox Code Playgroud)
小智 5
验证application.js中是否包含以下内容
//= require jquery
//= require jquery_ujs
Run Code Online (Sandbox Code Playgroud)
jquery_ujs代表Unobtrusive JavaScript,这确保了许多事情(例如delete方法)可以按预期工作。
请在此处查看Rafik的答案:找不到ID = sign_out的用户
| 归档时间: |
|
| 查看次数: |
1981 次 |
| 最近记录: |