覆盖设计注册控制器

时间:2010-08-23 09:32:29

标签: ruby-on-rails devise

我在注册表单中添加了一个基于不同模型的字段,有关详细信息,请参阅How do I use nested attributes with the devise model。这部分工作正常。

现在的问题是,当我保存时,注册控制器的创建操作失败,该操作由该字段(公司)上的Activerecord::UnknownAttributeError设计。

我假设我需要覆盖注册控制器,或者是否有更好/更简单的方法来接近这个?

6 个答案:

答案 0 :(得分:348)

在您的表单中,您是否通过不属于您的用户模型的批量分配或任何嵌套模型传递任何其他属性?

如果是这样,我相信在这个实例中会触发ActiveRecord :: UnknownAttributeError。

否则,我认为您可以通过生成以下内容来创建自己的控制器:

# app/controllers/registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController
  def new
    super
  end

  def create
    # add custom create logic here
  end

  def update
    super
  end
end 

然后告诉设计使用该控制器而不是默认值:

# app/config/routes.rb
devise_for :users, :controllers => {:registrations => "registrations"}

答案 1 :(得分:65)

使用命名空间覆盖Devise控制器和视图的更好,更有条理的方法:

创建以下文件夹:

app/controllers/my_devise
app/views/my_devise

将要覆盖的所有控制器放入app / controllers / my_devise,并将MyDevise命名空间添加到控制器类名称。 Registrations示例:

# app/controllers/my_devise/registrations_controller.rb
class MyDevise::RegistrationsController < Devise::RegistrationsController

  ...

  def create
    # add custom create logic here
  end

  ...    

end 

相应地更改路线:

devise_for :users,
           :controllers  => {
             :registrations => 'my_devise/registrations',
             # ...
           }

将所有必需的视图从Devise gem文件夹复制到app/views/my_devise或使用rails generate devise:views,删除您未覆盖的视图,并将devise文件夹重命名为my_devise

通过这种方式,您可以将所有内容整齐地组织在两个文件夹中。

答案 2 :(得分:33)

我相信有一个比重写RegistrationsController更好的解决方案。我做了完全相同的事情(我只是组织而不是公司)。

如果您正确设置了嵌套表单,则在模型和视图级别,一切都像魅力一样。

我的用户模型:

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

  has_many :owned_organizations, :class_name => 'Organization', :foreign_key => :owner_id

  has_many :organization_memberships
  has_many :organizations, :through => :organization_memberships

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

  accepts_nested_attributes_for :owned_organizations
  ...
end

我的组织模式:

class Organization < ActiveRecord::Base
  belongs_to :owner, :class_name => 'User'
  has_many :organization_memberships
  has_many :users, :through => :organization_memberships
  has_many :contracts

  attr_accessor :plan_name

  after_create :set_owner_membership, :set_contract
  ...
end

我的观点:'设计/注册/ new.html.erb'

<h2>Sign up</h2>

<% resource.owned_organizations.build if resource.owned_organizations.empty? %>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>

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

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

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

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

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

  <%= f.fields_for :owned_organizations do |organization_form| %>

    <p><%= organization_form.label :name %><br />
      <%= organization_form.text_field :name %></p>

    <p><%= organization_form.label :subdomain %><br />
      <%= organization_form.text_field :subdomain %></p>

    <%= organization_form.hidden_field :plan_name, :value => params[:plan] %>

  <% end %>

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

<%= render :partial => "devise/shared/links" %>

答案 3 :(得分:10)

您可以为设计自定义生成视图和控制器。

使用

rails g devise:controllers users -c=registrations

rails g devise:views 

它会将gem中的特定控制器和视图复制到您的应用程序中。

接下来,告诉路由器使用此控制器:

devise_for :users, :controllers => {:registrations => "users/registrations"}

答案 4 :(得分:10)

非常简单的方法 只需转到终端和

后面的类型
rails g devise:controllers users //This will create devise controllers in controllers/users folder

使用自定义视图

rails g devise:views users //This will create devise views in views/users folder

现在在你的route.rb文件中

devise_for :users, controllers: {
           :sessions => "users/sessions",
           :registrations => "users/registrations" }

您也可以添加其他控制器。这将设计使用用户文件夹中的控制器和用户文件夹中的视图。

现在,您可以根据需要自定义视图,并将逻辑添加到控制器/用户文件夹中的控制器。 享受!

答案 5 :(得分:0)

创建控制器注册并通过预定义的Devise :: RegistrationsController类覆盖其继承的类

struct

在此设置之后路由到:

# app/controllers/registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController
  def new
    super
  end

  def create
    # add custom create logic here
  end

  def update
    super
  end
end