本文介绍了找不到具有'id'= sign_out的用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用devise在rails中,现在无法注销我的用户。
I'm using devise in rails and I'm unable to logout of my user right now.
当我使用users / log_out页面时,它会显示出现以下错误:
When I use the users/log_out page, it gives the following error:
ActiveRecord::RecordNotFound in UsersController#show
Couldn't find User with 'id'=sign_out
无论如何,这是我的用户控制器:
Anyway, here is my users controller:
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
我的route.rb:
My 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
我想设计的迁移文件:
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
应用程序跟踪是这样的:
The application trace is as such:
app/controllers/users_controller.rb:40:in `show'
推荐答案
验证application.js中是否具有以下内容
Verify that you have the following in application.js
//= require jquery
//= require jquery_ujs
jquery_ujs代表Unobtrusive JavaScript,这确保了许多事情(例如delete方法)可以按预期工作。
The jquery_ujs stands for Unobtrusive JavaScript and this ensures many things (like delete method, e.g.) work as expected.
在此处查看Rafik的回答:
See Rafik's answer here: Couldn't find User with id=sign_out
这篇关于找不到具有'id'= sign_out的用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!