我已经遇到了一些麻烦,使自定义插值,通过我可以在网上找到的每一个例子,但无论我做了什么,没有成功.
目前我有这个:
目前我有这个:
模型
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