在Rails 3.1.3中使用Paperclip的多态嵌套表格

时间:2011-12-05 04:59:38

标签: ruby-on-rails ruby-on-rails-3 ruby-on-rails-3.1 paperclip

我的模特:

class NewsItem < ActiveRecord::Base
  has_many :file_uploads, :as => :uploadable
  accepts_nested_attributes_for :file_uploads, :allow_destroy => true
end


class FileUpload < ActiveRecord::Base
  belongs_to :uploadable, :polymorphic => true
  has_attached_file :upload, :styles => {:thumb => '100x100>'}
end

表单代码(嵌套在NewsItem中)

...

<%= f.fields_for :file_uploads do |upload| %>
  <div class="file_upload">
    <%= upload.file_field :upload %>
  </div>

  ...

<% end %>

...

在提交时,我收到以下错误:“未知属性:上传”。以下是参数:

{"utf8"=>"✓",
 "authenticity_token"=>"MBfxJ4XTizCXv3Mpu971VHCm60bS3Y84Kdxfe+VJD2w=",
 "news_item"=>{"title"=>"",
 "body"=>"",
 "published_date"=>"",
 "file_uploads_attributes"=>{"0"=>{"upload"=>#<ActionDispatch::Http::UploadedFile:0x000001070112a8 @original_filename="rails-dd352fc2630e5f9aa5685ef1d7fe5997.png",
 @content_type="image/png",
 @headers="Content-Disposition: form-data; name=\"news_item[file_uploads_attributes][0][upload]\"; filename=\"rails-dd352fc2630e5f9aa5685ef1d7fe5997.png\"\r\nContent-Type: image/png\r\n",
 @tempfile=#<File:/var/folders/hb/2bkct63171lck8d3sg0xfq0c0000gn/T/RackMultipart20111204-3216-71in7a>>,
 "name"=>"",
 "caption"=>""}}},
 "commit"=>"Create News item"}

我正在使用Rails 3.1.3和paperclip“〜&gt; 2.4”。

2 个答案:

答案 0 :(得分:1)

我会避免像“可上传”这样的通用术语,因为生成的术语“上传”可能会发生冲突。

youavmatchulsky的建议也很好 - 如果你在任何地方都有attr_accessible,你也需要使用file_uploads_attributes。

此外,params看起来不像是多部分,所以我强制它:multipart =&gt;在调用form_for

时为true

编辑:即使假定自动发生,你可能必须明确地接受连接的accept_nested_attributes_,然后在连接模型上accept_nested_attributes_for:uploadable - 我发现anaf很奇怪像多态连接这样的东西有时候

答案 1 :(得分:0)

重新启动rails app修复了问题。我猜我安装了gem但没有重启,导致上面的错误。获得的经验:安装宝石后总是重新启动。