0

我在提交注册表单时收到此错误消息:(我关注 railscast #250 http://railscasts.com/episodes/250-authentication-from-scratch

Mysql2::Error: Column 'password' cannot be null: 
INSERT INTO `users` (`activated`, `activation_key`, ... , `email`, `password`, `password_salt`, `telephone`, `updated_at`) 
VALUES (0, '9cli91cjwmt1rcahaiyefh05xhwy5hvz', ..., 'name@domain.tld', NULL, '$2a$10$4vc0HksIm17rzKDxcYVQiO', 123456789, '2013-06-27 19:16:54')

**Parameters**
{"utf8"=>"✓",
 "authenticity_token"=>"DNEv4SuXt5btf+MTqM1xA6BWeT7JUa3OAf4AITFCe18=",
 "user"=>{"email"=>"name@domain.tld",
 "password"=>"[FILTERED]",
 "password_confirmation"=>"[FILTERED]",
 "telephone"=>"123456789",
 "activation_key"=>"9cli91cjwmt1rcahaiyefh05xhwy5hvz"},
 "commit"=>"Create User"}

形式

<%= form_for @user do |f| %>
  <% if @user.errors.any? %>
    <div class="error_messages">
      <h2>Form is invalid</h2>
      <ul>
        <% for message in @user.errors.full_messages %>
          <li><%= message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>
  <p>
    <%= f.label :email %><br />
    <%= f.text_field :email %>
  </p>
  <p>
    <%= f.label :password %><br />
    <%= f.password_field :password %>
    ...**

我在参数中有密码值 FILTERED 因为我使用 f.password_field .. 因此我在 SQL 命令中有 NULL .. 电子邮件中的 f.text_field 有效.. 我错过了什么?

与 railscast 唯一不同的是我在 UsersController 中有这个,但它应该可以工作

def create
  params[:user][:activation_key] = Array.new(32){Random.new.rand(36).to_s(36)}.join
    @user = User.new(params[:user])
    if @user.save
        redirect_to root_url, :notice => "Signed up!"
    else
        render "new"
    end
end

谢谢

编辑:在 Debug @user.inspect 中抛出这个值

#<User id: nil, address_id: nil, company_id: nil, email: "username@domain.tld", password: nil, telephone: 123456789, activation_key: "jolkxv5bd7c2zgq08tkvb7srwe20tfqc", created_at: nil, updated_at: nil, activated: false, password_salt: nil, password_hash: nil>

我在 before_save 之前评论过:encrypt_password 现在生成了 password_hash 和 password_salt 但密码列仍然为 NULL :( 我从头开始尝试了新应用程序并且它可以工作.. 但我无法解决这个问题?

4

2 回答 2

0

我不知道您的应用程序到底出了什么问题,但是您所指的 Railscast 有点过时了,因为现在您会使用has_secure_password. 该 Railscast 有一个修改后的剧集,但只有付费客户才能看到修改后的剧集。

当然,没有这种新方法,没有什么可以阻止您进行身份验证,而且我认为这样做没有任何特别的缺点,但是如果您想了解其has_secure_password工作原理,请查看这个小教程

于 2013-06-27T19:39:29.753 回答
0

好的,我知道了,这个 railscast 不使用密码栏!它仅使用:email:string, password_hash:string,password_salt:string

于 2013-06-29T09:20:54.327 回答