所以我在使用Thoughtbot的Paperclip on Rails,但是遇到了所有图像属性都为空的问题:
[4;35;1mProject Create (0.0ms)[0m [0mINSERT INTO `projects` (`name`, `start_date`, `status`, `image_file_size`, `updated_at`, `url`, `image_content_type`, `description`, `progress`, `image_updated_at`, `created_at`, `image_file_name`) VALUES('dsfg', '2010-01-01', 'asdf', NULL, '2010-01-01 10:42:18', 'asfd', NULL, 'sdfg', 0, NULL, '2010-01-01 10:42:18', NULL)[0m
[paperclip] Saving attachments.
搜索可能的修复和教程的论坛等,尝试了每个修复,但没有。没有警告,错误,并且无声地失败。此外,包含的测试无法正常工作:(
运行Ruby 1.8.6,Rails 2.3.3和最新的Paperclip(以及ImageMagick,因为我将RMagick用于另一个项目)
在视图中,我有:
form_for project, :html => {:class => "ajaxForm", :multipart => true} do |f|
...
= f.file_field project.image.url
在控制器中,我有:
has_attached_file :image
attr_accessible :image
attr_accessible :status, :name, :start_date, :url, :progress, :description
attr_accessible :image_file_name, :image_content_type, :image_file_size, :image_created_at, :image_updated_at
#I also tried having just the :image line or the image attributes line, but no go
我的开发人员在Windows上,所以我也在这里尝试了tempfile补丁:http://thewebfellas.com/blog/2008/11/2/goodbye-attachment_fu-hello-paperclip
我觉得这很荒谬我忽略了,所以任何评论都会有所帮助。谢谢!
答案 0 :(得分:0)
所以根本原因是ajax - 虽然通过ajax进行POST调用,但是标题中不会发送图像信息(和相应的属性)。我认为这可能与浏览器中的实际表单行为有关,因此从知道如何解决此问题的人那里获得回复会很棒。