设计不允许登录

时间:2017-07-11 23:48:57

标签: ruby-on-rails devise

我在Rail 5应用程序上安装设备。我只是开箱即用。除了修复生成的视图之外,没有任何花哨的安装。

Devise不会让我的用户登录到该应用程序。我在尝试创建新用户时首次遇到此问题。我收到了错误:

1 error prohibited this user from being saved:
Email can't be blank

但我的电子邮件不是空白。所以我尝试从rails c创建了一个用户。用户卡住了。它显示在我的数据库中。但是当我尝试通过设计登录时,我收到了这个错误:

Invalid Username or password.

有效。我不知道发生了什么事。这是我的架构:

create_table "users", force: :cascade do |t|
t.string   "email",                  default: "", null: false
t.string   "encrypted_password",     default: "", null: false
t.string   "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
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"
t.datetime "created_at",                          null: false
t.datetime "updated_at",                          null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end

以下是新用户视图:

<div class="row">
<div class="col-md-4 col-md-push-4 col-sm-6 col-sm-push-3 col-xs-10 col-xs-push-1">
 <h3>Sign up</h3>
 <br />

 <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>

  <div class="form-group">
    <%= f.label :email %><br />
    <%= f.email_field :email, autofocus: true, class: 'form-control' %>
  </div>

  <div class="form-group">
    <%= f.label :password %>
    <% if @minimum_password_length %>
    <em>(<%= @minimum_password_length %> characters minimum)</em>
    <% end %><br />
    <%= f.password_field :password, autocomplete: "off", class: 'form-control' %>
  </div>

  <div class="form-group">
    <%= f.label :password_confirmation %><br />
    <%= f.password_field :password_confirmation, autocomplete: "off", class: 'form-control' %>
  </div>

  <div class="form-group">
    <%= f.submit "Sign up", class: 'btn btn-primary' %>
  </div>
<% end %>

<%= render "devise/shared/links" %>
</div>
</div>

型号:

class User < ApplicationRecord

  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

end

我可以肯定地确认我的数据库中有一个用户。我不知道发生了什么事。据我所知,我没有做任何与众不同的事情。救命啊!

0 个答案:

没有答案