覆盖装置注册控制器我已经在基于不同模型的注册表单中添加了一个字段,请参阅如何在设计模型中使用嵌套属性?关于血淋淋的细节。这部分工作正常。现在的问题是,当我保存时,注册控制器的创建操作失败了。Activerecord::UnknownAttributeError在这个领域(公司)。我假设我需要超越注册控制器,或者有一个更好/更容易的方式,我应该接近这一点?
3 回答
江户川乱折腾
TA贡献1851条经验 获得超5个赞
# app/controllers/registrations_controller.rbclass RegistrationsController < Devise::RegistrationsController def new super end def create # add custom create logic here end def update super endend
# app/config/routes.rbdevise_for :users, :controllers => {:registrations => "registrations"}
添加回答
举报
0/150
提交
取消