回形针保存文件,但不阅读它们



我正在处理一个需要附件的项目。具体来说,我需要将图片附加到产品模型。

也就是说,我遵循了铁路广播(链接在这里),我遵循了大多数说明(我认为有些已经过时了)。最后我写了以下内容:

产品形式:

  <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
要查看结果附件,在products 中显示视图:
<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"rnContent-Type: image/jpegrn", @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)

我从来没有真正看到过这张照片,因为它总是写着"失踪"。

现在,查看公共/system目录,我可以看到模型目录,以及回形针存储目录树,以及我试图保存的图像:

$ 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"回形针","~> 3.0"

看起来文件正在与post请求一起上传,但如果您查看脚本正在运行的SQL,则所有pic属性都被设置为nil。

我不确定模型中的attr_accessor行来自哪里,因为我没有在railcast或当前的回曲针文档中看到它们。这些可能是导致你的问题。

railscast是五年前的,所以我建议去github上的回形针项目https://github.com/thoughtbot/paperclip,并阅读如何安装和使用当前版本的回形针。他们有一个非常简单的入门指南,让它启动和运行。

相关内容

  • 没有找到相关文章

最新更新