设计...用户模型的附加列未验证

发布于 2024-11-03 08:51:42 字数 1142 浏览 1 评论 0原文

我正在 Rails 3 应用程序中使用 Devise 进行身份验证。我通过 db:migrate 将名字和姓氏列添加到数据库中。注册表单修改如下:

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

  <p><%= f.label :first_name %><br />
  <%= f.text_field :first_name %></p>

  <p><%= f.label :last_name %><br />
  <%= f.text_field :last_name %></p>

  <p><%= f.label :email %><br />
  <%= f.text_field :email %></p>

  <p><%= f.label :password %><br />
  <%= f.password_field :password %></p>

  <p><%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %></p>

  <p><%= f.submit "Sign up" %></p>
<% end %>

用户模型中的验证:

  validates :first_name, :last_name, :email, :password, :password_confirmation, :presence => true

由于某种原因,我收到“名字不能为空”和“姓氏不能为空”验证错误。有趣的是,这是除了 Stock Devise 字段之外还添加的两个字段。 Devise 是否会阻止向用户模型添加其他字段?还能有什么其他原因呢?

谢谢。

I am using Devise for authentication in a Rails 3 app. I added first_name and last_name columns to the database via db:migrate. The registration form was modified like so:

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

  <p><%= f.label :first_name %><br />
  <%= f.text_field :first_name %></p>

  <p><%= f.label :last_name %><br />
  <%= f.text_field :last_name %></p>

  <p><%= f.label :email %><br />
  <%= f.text_field :email %></p>

  <p><%= f.label :password %><br />
  <%= f.password_field :password %></p>

  <p><%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %></p>

  <p><%= f.submit "Sign up" %></p>
<% end %>

Validation in the User model:

  validates :first_name, :last_name, :email, :password, :password_confirmation, :presence => true

For some reason I am getting "First name can't be blank" and "Last name can't be blank" validation errors. It is interesting to note that these are the two fields added in addition to the stock Devise fields. Does Devise prevent adding other fields to the User model? What other reason could there be?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三五鸿雁 2024-11-10 08:51:42

可能您的用户模型已经定义了 attr_accessible。如果这是真的,那么您必须将 :first_name 和 :last_name 添加到列表中。

Probably your user model has defined attr_accessible. if this is true then you have to add :first_name and :last_name to the list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文