5

在 rails3 中使用回形针 gem,同时上传了两个图像副本,其中一个具有空条目,另一个是数据库中的原始图像,因为我在 localhost/phpmyadmin 中进行了检查。这个问题不必要地填充了我的数据库。已经找了好几天了。审查了许多关于多个图像的答案,但没有人提到这个问题。

我已遵循此代码https://github.com/websymphony/Rails3-Paperclip-Uploadify

4

1 回答 1

0

Paperclip 还将实际图像数据上传到我数据库中的字段图像中。我不得不对其进行调整以将文件名保存在数据库的 image_file_name 字段中。

这是我的控制器,它从上传表单中保存图像。

#paperclip replaces spaces with _
formatted_filename = params[:clothe][:image].original_filename
formatted_filename.gsub!(/\s/,'_')

#hook in image processing
#set type of upImg, formUpload (APIUpload, scrapeUpload, mobileUpload)
image = UploadImage.new(formatted_filename, Rails.root.to_s + '/public/products/', @clothe.id)
image.processImage

这是我的模型

class Product < ActiveRecord::Base
  attr_accessible :description, :price, :title, :image, :image_file_name, :published

  has_attached_file :image,
    :styles => {
    :thumb => "100x100#",
    :small  => "150x150>",
    :medium => "200x200" },
    :default_url => '/assets/missin.gif',
    :path => Rails.root.to_s + "/public/products/:filename",
    :url => "/products/published/:basename.:extension"
于 2013-05-10T19:31:56.207 回答