我正在开发一个需要附件的项目。具体来说,我需要将图片附加到产品模型。
那就是说,我跟着一个railscast(链接here),然后我按照大部分说明进行操作(因为我认为有些过时了)。我最终得到了以下内容:
产品形式:
<div class="field">
<%= f.label "Pic"%><br />
<%= f.file_field :pic %>
</div>
产品型号:
class Product < ActiveRecord::Base
attr_accessible :brand_id, :name, :pic
attr_accessor :pic_file_name
attr_accessor :pic_content_type
attr_accessor :pic_file_size
attr_accessor :pic_updated_at
has_attached_file :pic
要查看产生的附件,请在产品显示视图中
<p>
<b>Pic:</b>
<%= image_tag @product.pic.url %>
</p>
现在,问题是即使日志显示已成功上传使用file_field
选择的图像:
Started POST "/products" for 127.0.0.1 at 2013-04-22 17:10:56 -0500
Processing by ProductsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"llIJTXKH87e7vpjX1A7Kmcz6BD2UToPvIfVd1bqmA58=", "product"=>{"brand_id"=>"1", "name"=>"asda\
sdsa", "pic"=>#<ActionDispatch::Http::UploadedFile:0x007f9cfdb201c8 @original_filename="3.JPG", @content_type="image/jpeg", @headers="Conten\
t-Disposition: form-data; name=\"product[pic]\"; filename=\"3.JPG\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<File:/var/folders/_r/d96rh\
0652xndcknb2txzn77r0000gn/T/RackMultipart20130422-2306-qoojw2>>}, "commit"=>"Create Product"}
^[[1m^[[36m (0.1ms)^[[0m ^[[1mbegin transaction^[[0m
^[[1m^[[35mSQL (76.1ms)^[[0m INSERT INTO "products" ("brand_id", "created_at", "image_content_type", "image_file_name", "image_file_size"\
, "image_updated_at", "name", "pic_content_type", "pic_file_name", "pic_file_size", "pic_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?\
, ?, ?, ?, ?, ?, ?) [["brand_id", 1], ["created_at", Mon, 22 Apr 2013 22:10:56 UTC +00:00], ["image_content_type", nil], ["image_file_name"\
, nil], ["image_file_size", nil], ["image_updated_at", nil], ["name", "asdasdsa"], ["pic_content_type", nil], ["pic_file_name", nil], ["pic_\
file_size", nil], ["pic_updated_at", nil], ["updated_at", Mon, 22 Apr 2013 22:10:56 UTC +00:00]]
[paperclip] Saving attachments.
^[[1m^[[36m (0.9ms)^[[0m ^[[1mcommit transaction^[[0m
Redirected to http://localhost:3000/products/10
Completed 302 Found in 126ms (ActiveRecord: 77.1ms)
我实际上从未真正看过图像,因为它总是说“失踪”。
现在,查看public / system目录,我可以看到那里的模型目录,以及Paperclip存储目录树,以及我试图保存的图像:
$ ls public/system/products/pics/000/000/010/original/
3.JPG
我确实在文件
中设置了ImageMagick路径配置/初始化/ paperclip.rb
哪个成立:
Paperclip.options[:command_path] = "/Users/<my_user>/Documents/non-ios_apps/ImageMagick-6.8.1/bin/"
所以,我不知道为什么图像 被上传,但无法阅读。这可能与它没有保存到数据库中的任何内容有关,就附件而言,但我不确定它们是否是单独的问题或者是否触发另一个问题。
感谢任何帮助。
谢谢!
使用: Rails 3.2.10 “paperclip”,“〜&gt; 3.0”
答案 0 :(得分:1)
看起来文件是使用post请求上传的,但是如果查看SQL脚本正在运行,则所有pic属性都将设置为nil。
我不确定模型中的attr_accessor线来自哪里,因为我没有在railscast或当前的回形针文档中看到它们。这些可能是造成问题的原因。
railscast是五年了,所以我建议你去https://github.com/thoughtbot/paperclip的github上的paperclip项目,并阅读如何安装和使用当前版本的paperclip。他们有一个关于启动和运行的非常简单的演练。