rails devise:用户和帐户模型

时间:2012-02-02 00:34:32

标签: ruby-on-rails

您好我正在尝试通过添加其他字段名称来自定义注册页面。

这是通过向我的应用添加个人资料模型来完成的。

    class Profile < ActiveRecord::Base
      belongs_to :user
    end

    class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me, :profile_attributes

  has_one :profile, :dependent => :destroy

  accepts_nested_attributes_for :profile
end

我覆盖了注册模式:

    # app/controllers/registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController
  def new
    super
    profile = @user.build_profile

  end

  def create
    super   

  end

  def update
    super
  end
end 

我的新注册页面:

    <h2>Sign up</h2>

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

  <div><%= f.label :email %><br />
  <%= f.email_field :email %></div>

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

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

  <div><% f.fields_for :profile do |builder| %>
    <p><%= builder.label :name %></p>
    <p><%= builder.text_field :name %></p>
  <% end %></div>

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

<%= render "links" %>

但是,我不确定其他一切是否有效,但注册页面看起来仍然相同。也就是说,它不显示名称输入字段。我该如何解决这个问题?

我错过了什么?

1 个答案:

答案 0 :(得分:0)

我怀疑你没有生成视图。你有没有运行以下内容?

rails generate devise:views

有关更改视图的更多信息,请参阅设计维基上的“配置视图”:

https://github.com/plataformatec/devise

谢谢,

Tabrez