设计嵌套表单而不创建配置文件

Devise nested form not creating profile

Rails 5.0.1
设计 4.2.0

你好,我正在构建一个应用程序,用户必须在其中填写表格才能注册,其中包括设计的注册信息,以及他们个人资料的一些个人信息。我为用户和配置文件制作了模型,建立了它们的一对一关系,并在用户内部添加了 accept_nested_attributes_for :profile 。我还修改了注册视图以包含配置文件的 f.fields_for,直到那时一切似乎都正常。

但是,当我尝试创建一个新用户并填写所需信息时,我在视图中收到一条错误消息(我猜是设计的)说:

1 个错误禁止保存该用户

我已经遵循了很多关于如何使用 devise 创建嵌套表单的指南,其中 none 似乎有这个问题,我也搜索了很多都没有答案。以下是我的注册控制器、用户和配置文件模型以及 registrations/new 视图的一些片段:

registrations_controller

class Users::RegistrationsController < Devise::RegistrationsController
  before_action :configure_sign_up_params, only: [:create]
  before_action :configure_account_update_params, only: [:update]

  def new
    build_resources({})
    resource.build_profile
    respond_with self.resource
  end

  protected

  def configure_sign_up_params
    devise_parameter_sanitizer.permit(:sign_up, 
                      keys: [:email, :password,
                      :password_confirmation,
                      profile_attributes: [:name, :art_name,
                      :birth_date, :location]])
  end

用户模型

class User < ApplicationRecord
  has_one :profile, dependent: :destroy
  before_create :build_profile
  accepts_nested_attributes_for :profile

  # Devise configuration.....
end

个人资料模型

class Profile < ApplicationRecord
  belongs_to :user
end

Registrations/new 查看

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

    <%= f.fields_for :profile do |b| %>

      <div class="field">
        <%= b.label :name, "Nombre" %><br />
        <%= b.text_field :name %>
      </div>

      <div class="field">
        <%= b.label :art_name, "Nombre artistico" %><br />
        <%= b.text_field :art_name %>
      </div>

      <div class="field">
        <%= b.label :birth_date, "Fecha de nacimiento" %><br />
        <%= b.date_field :birth_date %>
      </div>

      <div class="field">
        <%= b.label :location, "Ubicacion" %><br />
        <%= b.text_field :location %>
      </div>

    <% end %>

    <div class="field">
      <%= f.label :email %><br />
      <%= f.email_field :email, autofocus: true %>
    </div>

    <div class="field">
      <%= f.label :password %>
      <% if @minimum_password_length %>
        <em>(<%= @minimum_password_length %> characters minimum)</em>
      <% end %><br />
      <%= f.password_field :password, autocomplete: "off" %>
    </div>

    <div class="field">
      <%= f.label :password_confirmation %><br />
      <%= f.password_field :password_confirmation, autocomplete: "off" %>
    </div>

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

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

我的猜测是它与消毒剂有关,我不完全确定如何传递每个属性,因为解释这一点的大多数指南都是使用旧版本的设计。

感谢您的关注。

在您的个人资料模型中,试试这个:

belongs_to :user, optional: true

对我有用