我正在尝试通过“客户”为“广告系列”创建新记录,如下所示。表单正确提交,但没有为客户创建新的广告系列记录。任何建议将不胜感激。
模型
class Customer::Customer < User
has_one :library, dependent: :destroy
has_many :campaigns, dependent: :destroy
accepts_nested_attributes_for :campaigns, :library, allow_destroy: true
end
class Customer::Campaign < ActiveRecord::Base
belongs_to :customer
end
客户控制器 - 仅显示更新方法
class Customer::CustomersController < ApplicationController
layout "customer_layout"
def update
session[:return_to] ||= request.referer
@customer = User.find(params[:id])
if @customer.update_attributes(customer_params)
flash[:success] = "Profile updated"
redirect_to @customer
else
flash[:notice] = "Invalid"
redirect_to session.delete(:return_to)
end
end
def customer_params
params.require('customer_customer').permit(:name, :email, :password, :password_confirmation, :country_code, :state_code, :postcode, :first_name, :surname, campaigns_attributes:[:name, :description, :start_date, :complete_date ])
end
end
我正在使用的表格
<%= form_for @customer do |f| %>
<%= render 'shared/customer_error_messages' %>
<%= f.fields_for :campaign do |builder| %>
<%= builder.label :name, "Campaign Name" %></br>
<%= builder.text_field :name %>
<% end %>
<div class="actions">
<%= f.submit class: "btn btn-large btn-primary"%>
</div>
<% end %>
控制台输出(有错误,如下)
Started PATCH "/customer/customers/38" for 127.0.0.1 at 2014-05-26 23:13:10 +1000
Processing by Customer::CustomersController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"9ChLYna0/VfZSMJOa2yGgvWTT61XkjoYwlVup/Pbbeg=", "customer_customer"=>{"campaign"=>{"name"=>"My new campaign"}}, "commit"=>"Update Customer", "id"=>"38"}
User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = '0e8b4ba6dc957e76948fc22bae57673404deb9fe' LIMIT 1
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", "38"]]
CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", "38"]]
Unpermitted parameters: campaign
答案 0 :(得分:1)
如果此表单仅执行添加一个广告系列,我猜您应该将此exect广告系列手动添加到客户。如果您以这种方式更新所有广告系列模型,则应将所有广告系列放入数组中。所以它意味着另一个控制器动作。
另一种方法:检查params是否包含字段campain
,然后将其添加到customer
对象:
def update
session[:return_to] ||= request.referer
@customer = User.find(params[:id])
if new_campaign_customer_params.has_key? :campaign
@customer.campaigns << Campaign.new(new_campaign_customer_params)
if @customer.save
flash[:success] = "Profile updated"
redirect_to @customer
else
flash[:notice] = "Invalid"
# you should rerender your view here, set it path
render 'your_view'
end
else
if @customer.update_attributes(customer_params)
flash[:success] = "Profile updated"
redirect_to @customer
else
flash[:notice] = "Invalid"
redirect_to session.delete(:return_to)
end
end
end
def new_campaign_customer_params
params.require('customer_customer').permit(campaign_attributes:[:name, :description, :start_date, :complete_date ])
end
检查一下,不确定是否有效。
或者它可能会如何在评论中建议:更改campaigns_attributes
=&gt; campaign_attributes
方法中的customer_params
和表格中的f.fields_for :campaigns
(属于@Nikita Chernov)