ruby-on-rails-3 – Rails 3,Paperclip – Custom Interpolations

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – Rails 3,Paperclip – Custom Interpolations前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经遇到了一些麻烦,使自定义插值,通过我可以在网上找到的每一个例子,但无论我做了什么,没有成功.
目前我有这个:

模型

has_attached_file :photo,:path => ":rails_root/public/images/:img_name-:style.:extension",:styles => {
    :original => '100x100',:thumb => '30x30'
}

初始化/ paperclip.rb

Paperclip.interpolates :img_name do |attachment,style|
  attachment.instance.img_name
end

img_name是使用图像上传的形式填充的字段.
上传错误是:

Invalid argument – (C:/Users/…/stream20110410-384-stl2lk20110230-213-1fm2bab,C:/…/photo_upload/public/images/:img_name-original.jpg)

解决方法

如果直接在模型中似乎工作:
class Model < ActiveRecord::Base

  Paperclip.interpolates :img_name do |attachment,style|
    attachment.instance.img_name
  end

  has_attached_file :photo,:styles => {
      :original => '100x100',:thumb => '30x30'
    }

end
原文链接:https://www.f2er.com/ruby/266821.html

猜你在找的Ruby相关文章