嗨,我有一个Rails 6应用程序,我希望用户在注册时创建一个帐户。
我正在使用设备进行身份验证。
我有两个模型User(devise)和account
upper
在注册(设备注册)期间,我希望用户创建一个帐户。
在控制台中它起作用:
class User < ApplicationRecord
has_merit
enum role: [:user, :tech, :admin, :manager]
belongs_to :account
accepts_nested_attributes_for :account
after_initialize :set_default_role, :if => :new_record?
def set_default_role
self.role ||= :admin
end
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :invitable, :registerable,
:recoverable, :rememberable, :validatable
end
class Account < ApplicationRecord
has_many :users, dependent: :destroy
has_many :clients, dependent: :destroy
end
按预期创建。
但是当我使用前端表单
User.create(email: 'test@email.com', password: "test", password_confirmation: "test, account_attributes: {name: "testaccount"})
我收到一个时髦的错误
<h2>Sign up</h2>
<%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :email,
required: true,
autofocus: true,
input_html: { autocomplete: "email" }%>
<%= f.simple_fields_for :accounts do |a| %>
<%= a.input :name %>
<% end %>
<%= f.input :password,
required: true,
hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length),
input_html: { autocomplete: "new-password" } %>
<%= f.input :password_confirmation,
required: true,
input_html: { autocomplete: "new-password" } %>
</div>
<div class="form-actions">
<%= f.button :submit, "Sign up" %>
</div>
<% end %>
我的模式
ActiveModel::UnknownAttributeError (unknown attribute 'accounts' for User.):
非常感谢您的帮助,如果您需要更多信息,请告诉我。
答案 0 :(得分:3)
您之所以得到UnknownAttributeError
,是因为您的users
表中没有名为accounts
的列。
我建议您这样做:
#user.rb
has_one :account, inverse_of: :user
accepts_nested_attributes_for :account
#account.rb
belong_to :user
#controller
def new
@user = User.new
@user.build_account
end
来源:https://github.com/plataformatec/simple_form/wiki/Nested-Models#nested-models