gpt4 book ai didi

ruby-on-rails - 带有嵌套资源 : update belongs_to association when creating new has_many 的 Rails 嵌套表单

转载 作者:行者123 更新时间:2023-12-01 05:44:37 25 4
gpt4 key购买 nike

我一直在用嵌套表单的特定用例(我使用的是 Rails 2.3.5)撞墙。
基本上,我有看起来像这样的项目和付款模型

class Project < ActiveRecord::Base
has_many :payments
end

class Payment < ActiveRecord::Base
belongs_to :project
accepts_nested_attributes_for :project
end
我还对这两个资源使用嵌套路由:
map.resources :projects do |project|
project.resources :payments
end
我正在尝试使用嵌套表单来允许用户在创建新付款时修改项目的某些属性。因此,如果项目有标题,例如,用于创建新付款的 View 将如下所示:
<% form_for([@project, @payment]) do |f| %>
<% f.fields_for :project do |project_form| %>
<%= project_form.label :title %>
<%= project_form.text_field :title %>
<% end %>

<%= f.text_field :credit_card_number %>

...
<% end %>
Payments Controller 非常标准:
class PaymentsController < ApplicationController
before_filter :load_project

# GET /payments/new
# GET /payments/new.xml
def new
@payment = @project.payments.build

respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @payment }
end
end

# POST /payments
# POST /payments.xml
def create
@payment = @project.payments.build(params[:payment])

respond_to do |format|
if @payment.save
flash[:notice] = 'Payment was successfully created.'
format.html { redirect_to([@project, @payment]) }
format.xml { render :xml => @payment, :status => :created, :location => @payment }
else
format.html { render :action => "new" }
format.xml { render :xml => @payment.errors, :status => :unprocessable_entity }
end
end
end

private
def load_project
@project = Project.find(params[:project_id])
end
end
我发现在新的付款表单上,我最终得到了这样的结果:
<input id="payment_project_attributes_title" name="payment[project_attributes][title]" size="30" type="text" />
<input id="payment_project_attributes_id" name="payment[project_attributes][id]" type="hidden" value="56" />
(注意自动创建的#payment_project_attributes_id)
当表单被提交时,rails 会收到这样的信息(请记住,项目 #56 已经存在):
"payment"=>{"project_attributes"=>{"title"=>"test title", "id"=>"56"}, "credit_card_number"=>"41111111111111111"}
这就是问题所在:当它通过 Controller 运行时,它不会将 title 属性应用于支付项目。
奇怪的是,如果我删除了 “id”=>“56” ,项目的标题已更新。这是使用控制台的示例:
ruby-1.8.7-p249 >   Project.find(56)
=> #<Project id: 56, title: nil, created_at: "2010-06-18 15:58:25", updated_at: "2010-06-18 16:01:37">
ruby-1.8.7-p249 > p=Project.find(56).payments.new({"project_attributes"=>{"title"=>"my new title", "id"=>"56"}})
=> #<Payment id: nil, project_id: 56, created_at: nil, updated_at: nil>
ruby-1.8.7-p249 > p.project
=> #<Project id: 56, title: nil, created_at: "2010-06-18 15:58:25", updated_at: "2010-06-18 16:01:37">
ruby-1.8.7-p249 > p=Project.find(56).payments.new({"project_attributes"=>{"title"=>"test title"}})
=> #<Payment id: nil, project_id: 56, created_at: nil, updated_at: nil>
ruby-1.8.7-p249 > p.project
=> #<Project id: nil, user_id: nil, title: "test title", created_at: nil, updated_at: nil>
(注意第二个 Payments.new,没有 ID,会导致 p.project.title 被更新)
这似乎与这张票直接矛盾: https://rails.lighthouseapp.com/projects/8994/tickets/3687-nested-attributes-with-belongs_to-only-supports-one-use-case
有人有什么想法吗?
我应该注意到,我真正想做的是更复杂的一层——我正在尝试更新项目的 user_attributes(在项目中使用belongs_to :user/accepts_nested_attributes_for :user),但我有点希望如果我能弄清楚这一点,就会起作用。

最佳答案

似乎由于您是根据 @project.payments 的关联调用 build 方法,因此它已经知道项目 ID 是什么。也许它不喜欢您尝试更新项目 ID 的事实?

关于ruby-on-rails - 带有嵌套资源 : update belongs_to association when creating new has_many 的 Rails 嵌套表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3071529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com