我在提交注册表单时收到此错误消息:(我关注 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 :( 我从头开始尝试了新应用程序并且它可以工作.. 但我无法解决这个问题?