我正在写一个用RoR编写的博客网站,并且遇到了与Sorcery有关的问题。我从他们的文档中做了教程来创建简单的登录。我的问题是,他们使用电子邮件在登录时识别用户。
所以我尝试修改会话控制器,将用户名作为参数而不是电子邮件发送,并相应地修改我的视图。
日志说一切正常,用户名和密码都传递给数据库。但是,我找不到解决方案,生成的SQL字符串仍然使用“authors”。“email”作为参数。
我该如何解决?
我的日志:
Processing by AuthorSessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ForXjJMiPCI6H37xqtPzGwa9XBOHx1yIaGjlZdUd6Iw+G4M5v6s/JXrFcGG5VVyuFl6Is+cr5Zp/fxJcNyS/Tw==", "username"=>"Test", "password"=>"[FILTERED]", "commit"=>"Login"}
Author Load (0.5ms) SELECT "authors".* FROM "authors" WHERE "authors"."email" = 'Test' ORDER BY "authors"."id" ASC LIMIT ? [["LIMIT", 1]]
Rendering author_sessions/new.html.erb within layouts/application
Rendered author_sessions/new.html.erb within layouts/application (2.4ms)
Completed 200 OK in 63ms (Views: 49.6ms | ActiveRecord: 2.5ms)
我的会话控制器:
class AuthorSessionsController < ApplicationController
def new
end
def create
if login(params[:username], params[:password])
redirect_back_or_to(articles_path, notice: 'Logged in successfully.')
else
flash.alert = 'Login failed.'
render action: :new
end
end
def destroy
logout
redirect_to(articles_path, notice: 'Logged out!')
end
end
我的new.html.erb
<h1>Login</h1>
<%= form_tag author_sessions_path, method: :post do %>
<div class="field">
<%= label_tag :username %>
<%= text_field_tag :username %>
<br>
</div>
<div class="field">
<%= label_tag :password %>
<%= password_field_tag :password %>
<br>
</div>
<div class="actions">
<%= submit_tag 'Login' %>
</div>
<% end %>
<%= link_to 'Back', articles_path %>
答案 0 :(得分:2)
我确实遇到了同样的问题,以下帮助: - 在迁移文件中安装巫术(rails g sorcery:install)时,将:email发送到:username,这样看起来就像这样
class SorceryCore < ActiveRecord::Migration[5.0]
def change
create_table :users do |t|
t.string :username, :null => false
t.string :crypted_password
t.string :salt
t.timestamps :null => false
end
add_index :users, :username, unique: true
end
end
rake db:migrate
所以我有一个用户模型rails generate controller UserSessions new create destroy
并填充视图部分login(params[:username], params[:password])
,这是一种法术方法,默认情况下:email
为username_attribute
:username
,我转到/config/initializers/sorcery.rb
并找到了config.user_config do |user|
行(在第188行附近),并向其添加了user.username_attribute_names = [:username]
,而不是电子邮件,需要用户名。这为我解决了。不要忘记在使用它的任何地方将:email
更改为:username
。