Rails:paperclip不保存在数据库中

时间:2012-10-19 07:59:48

标签: ruby-on-rails database upload paperclip

所以我刚刚添加了paperclip并将其迁移到名为users_pictures的表中。 我的模型看起来像这样:

class UsersPicture < ActiveRecord::Base
 attr_accessible :user_id, :users_picture_file, :users_picture_id,
                 :photo_file_name, :photo_content_type, :photo_file_size
  belongs_to :users
  has_attached_file :photo,
  :url => "/images/:attachment/:basename.:extension",
  :path => ":rails_root/public/images/:attachment/:basename.:extension"
end

因此,当我访问“new.html.erb”页面时,我可以在表单中添加图片...将其提供给user_id并提交。 Rails没有向我显示任何错误,日志甚至说:

Processing by UsersPicturesController#create as HTML

Parameters: {"commit"=>"Create Users picture",`
"authenticity_token"=>"0tbAZj5MKyN/uaj0ybaNsa0dZrxeS05OJNNA3ZNO8Uc=",
"users_picture"=>{"user_id"=>"12", 
"photo"=>#<ActionDispatch::Http::UploadedFile:0xe028dbd4

@content_type="image/jpeg", @tempfile=#<File:/tmp/RackMultipart20121019-14239-1edlwpp-0>, 
@headers="Content-Disposition: form-data; name=\"users_picture[photo]\"; filename=\"rh.jpeg
\"\r\nContent-Type: image/jpeg\r\n", @original_filename="rh.jpeg">}, "utf8"=>"✓"}
[paperclip] Saving attachments.
Redirected to xxxx/users_pictures/8
Completed 302 Found in 18ms (ActiveRecord: 1.2ms)

但是fileinfo没有保存到数据库中......所以我无法显示它。 Firebug告诉我一些关于POST方法的参数:

authenticity_token  0tbAZj5MKyN/uaj0ybaNsa0dZrxeS05OJNNA3ZNO8Uc=
users_picture[user_id]  12
users_picture[photo]    ÿØÿà�JFIF������ÿÛ�� !"&# /!$'),,-180*5*+,) 0%"5)-,*4,,,*,),),,,,,,,,,,,,,))),,,*,),,,,),),,,)).,ÿÀ��Ì�Ì"�ÿÄ��������������ÿÄ�E� ����!1AQ"aq2#BRbr¡3²¢±ÁÑ4SÓ%Cs£ÒáÿÄ������������ÿÄ�%��������!1"A2BQq¡ÿÚ���?�Þ4¥()JJRR ¥pLªXl °ôR|¨u]Þýú

等等。 所以它不是将路径保存到数据库中而是保存图片的源代码? 如你所见,我已设置:url和:path(即使没有:附件,因为我不知道它是什么)

一般来说,我只是想将图片上传到某个路径;并在我的数据库中存储名称和大小等文件信息。

我在view-folder中的表单如下所示:

<%= form_for(@users_picture, :html => { :multipart => true }) do |f| %>
...
 <%= f.file_field :photo %>

我不会发布show和index.html.erb因为显示是另一回事 - 我首先必须实现保存数据库中的所有数据+将图片上传到某些文件夹。 关于如何正确地做到这一点的任何建议?

1 个答案:

答案 0 :(得分:1)

您不需要在这些子字段上设置attr_accessible。您唯一要标记为attr_accessible的是:photo属性:

class UsersPicture < ActiveRecord::Base
  attr_accessible :user_id, :users_picture_file, :users_picture_id, :photo