我的表单中的嵌套属性未保存

时间:2015-08-28 04:10:36

标签: ruby-on-rails

我的模特:

class Group < ActiveRecord::Base
    has_many :images, :dependent => :destroy

    accepts_nested_attributes_for :images, :reject_if => lambda { |a| a[:pic].blank? }, :allow_destroy => true
end

class Image < ActiveRecord::Base
  belongs_to :group
  has_many :votes, :dependent => :destroy

  has_attached_file :pic, styles: { medium: "300x300>", thumb: "100x100>" }, default_url: "/images/:style/missing.png"
  validates_attachment_content_type :pic, content_type: /\Aimage\/.*\Z/
end

我的群组控制器:

def new
    @group = Group.new
    3.times {@group.images.build}
end

def create
    @group = Group.new(group_params)

    if @group.save
        redirect_to groups_path
    else
        render 'new'
    end
end

def group_params
    params.require(:group).permit(:name)
end

我的表单:

<%= form_for @group, html: { multipart: true } do |f| %>
    <%= f.label :name %>
    <%= f.text_field :name %>
    <%= f.fields_for :images do |builder| %>
        <p>
          <%= builder.label :pic %>
          <%= builder.file_field :pic %>
        </p>
    <% end %>
    <%= f.submit %>
<% end %>

所以问题是,当我提交表单时,创建组没有问题。我可以在日期库中找到该组,访问组属性(组的名称),但没有一个图像被保存到数据库中。我也没有收到错误,所以我不确定是怎么回事。我有什么遗失的吗?

注意:我使用paperclip gem附加文件

2 个答案:

答案 0 :(得分:2)

def group_params
    params.require(:group).permit(:name, :images_attributes => [:pic])
end

您必须允许 group_params中的嵌套参数。

答案 1 :(得分:0)

更新您的代码:

def group_params    
params.require(:group).permit(:name, :images_attributes => [:pic,:_destroy])
end