使用 rails 中的嵌套属性和 cocoon
using nested attributes in rails with cocoon
我有这个设置,但出于某种原因,我无法在数据库中保存 employent_history。当仅更新配置文件属性时,我使用了 cocoon gem
class User < ApplicationRecord
has_one :profile, dependent: :destroy
has_many :employent_histories :through :profile
after_create :init_profile
def init_profile
self.create_profile!
end
end
如您所见,配置文件是在创建新用户时创建的
我添加了另一个名为 employment_history 的模型,它属于用户和配置文件
配置文件模型
accepts_nested_attributes_for :employment_history
class Profile < ApplicationRecord
belongs_to :user
has_many :employent_histories
accepts_nested_attributes_for :employent_histories
end
class EmploymentHistory < ApplicationRecord
belongs_to :user
belongs_to :profile
end
profile_controller.rb
没有创建操作,因为资源是在处理新用户时创建的
class ProfilesController < ApplicationController
def show
@profile = current_user.profile
end
def edit
@profile = current_user.profile
end
def update
# byebug
@profile = current_user.profile
respond_to do |format|
if @profile.update profile_params
format.html { redirect_to user_profile_path, notice: "Profile updated!" }
format.json { render :edit, status: :ok, location: @profile }
else
format.html { redirect_to edit_user_profile_path, flash: { error: "Profile could not be updated!" } }
format.json { render json: @profile.errors.messages, status: :unprocessable_entity }
end
end
end
private
def profile_params
params.require(:profile).permit(:title,:phone,:address,:zip_code,employment_histories:[:job_title,:employer,:_destroy])
end
views/profiles/edit.html.erb
<%= form_for @profile, url: {action: "update"} do |f| %>
<%= attributes%>
<%= attributes%>
<%= f.fields_for :employment_histories do |ff| %>
<%= attributes%>
<%end%>
<%f.sumbit%>
<%end%>
使用此设置,嵌套属性表单的字段不会显示在编辑配置文件页面上。
我错过了什么
您允许在参数中使用 :employment_histories
,但是 AFAIR,嵌套参数应该在键 :<association-name>_attributes
下接收。
此外,您应该允许 id
嵌套对象,以防您想再次编辑它们。
所以,最终的 profile_params
应该是这样的:
def profile_params
params.require(:profile)
.permit(
:title,
:phone,
:address,
:zip_code,
employment_histories_attributes: [:id, :job_title, :employer, :_destroy]
)
end
我有这个设置,但出于某种原因,我无法在数据库中保存 employent_history。当仅更新配置文件属性时,我使用了 cocoon gem
class User < ApplicationRecord
has_one :profile, dependent: :destroy
has_many :employent_histories :through :profile
after_create :init_profile
def init_profile
self.create_profile!
end
end
如您所见,配置文件是在创建新用户时创建的
我添加了另一个名为 employment_history 的模型,它属于用户和配置文件
配置文件模型 accepts_nested_attributes_for :employment_history
class Profile < ApplicationRecord
belongs_to :user
has_many :employent_histories
accepts_nested_attributes_for :employent_histories
end
class EmploymentHistory < ApplicationRecord
belongs_to :user
belongs_to :profile
end
profile_controller.rb
没有创建操作,因为资源是在处理新用户时创建的
class ProfilesController < ApplicationController
def show
@profile = current_user.profile
end
def edit
@profile = current_user.profile
end
def update
# byebug
@profile = current_user.profile
respond_to do |format|
if @profile.update profile_params
format.html { redirect_to user_profile_path, notice: "Profile updated!" }
format.json { render :edit, status: :ok, location: @profile }
else
format.html { redirect_to edit_user_profile_path, flash: { error: "Profile could not be updated!" } }
format.json { render json: @profile.errors.messages, status: :unprocessable_entity }
end
end
end
private
def profile_params
params.require(:profile).permit(:title,:phone,:address,:zip_code,employment_histories:[:job_title,:employer,:_destroy])
end
views/profiles/edit.html.erb
<%= form_for @profile, url: {action: "update"} do |f| %>
<%= attributes%>
<%= attributes%>
<%= f.fields_for :employment_histories do |ff| %>
<%= attributes%>
<%end%>
<%f.sumbit%>
<%end%>
使用此设置,嵌套属性表单的字段不会显示在编辑配置文件页面上。 我错过了什么
您允许在参数中使用 :employment_histories
,但是 AFAIR,嵌套参数应该在键 :<association-name>_attributes
下接收。
此外,您应该允许 id
嵌套对象,以防您想再次编辑它们。
所以,最终的 profile_params
应该是这样的:
def profile_params
params.require(:profile)
.permit(
:title,
:phone,
:address,
:zip_code,
employment_histories_attributes: [:id, :job_title, :employer, :_destroy]
)
end