我是铁杆新手。我目前正在为Rails 3中的模型设置Paperclip。当其中一个表单字段未通过验证时,它无法再次重新加载我上传的图像。它要求用户新上传。它看起来并不友好。
我想做两件事来解决这个问题。如果所有字段都填写正确,我想将它存储在我的应用程序中(系统文件夹像往常一样回形针)。如果字段验证失败,想暂时将图像存储在单独的文件夹中,直到它被保存。
我走的是正确的道路吗?还有什么简单的方法吗?
答案 0 :(得分:1)
不幸的是,只有在成功保存包含该文件的模型后,Paperclip才会保存上传的文件。
我认为最简单的选择是使用javascript进行验证客户端,因此不需要所有后端配置/黑客攻击。
答案 1 :(得分:0)
我不得不在最近的一个项目中解决这个问题。它有点hacky但它的工作原理。我曾尝试在模型中使用after_validation和before_save调用cache_images(),但由于某些我无法确定的原因,它在创建时失败,所以我只是从控制器调用它。希望这能节省一些时间!
模型:
class Shop < ActiveRecord::Base
attr_accessor :logo_cache
has_attached_file :logo
def cache_images
if logo.staged?
if invalid?
FileUtils.cp(logo.queued_for_write[:original].path, logo.path(:original))
@logo_cache = encrypt(logo.path(:original))
end
else
if @logo_cache.present?
File.open(decrypt(@logo_cache)) {|f| assign_attributes(logo: f)}
end
end
end
private
def decrypt(data)
return '' unless data.present?
cipher = build_cipher(:decrypt, 'mypassword')
cipher.update(Base64.urlsafe_decode64(data).unpack('m')[0]) + cipher.final
end
def encrypt(data)
return '' unless data.present?
cipher = build_cipher(:encrypt, 'mypassword')
Base64.urlsafe_encode64([cipher.update(data) + cipher.final].pack('m'))
end
def build_cipher(type, password)
cipher = OpenSSL::Cipher::Cipher.new('DES-EDE3-CBC').send(type)
cipher.pkcs5_keyivgen(password)
cipher
end
end
控制器:
def create
@shop = Shop.new(shop_params)
@shop.user = current_user
@shop.cache_images
if @shop.save
redirect_to account_path, notice: 'Shop created!'
else
render :new
end
end
def update
@shop = current_user.shop
@shop.assign_attributes(shop_params)
@shop.cache_images
if @shop.save
redirect_to account_path, notice: 'Shop updated.'
else
render :edit
end
end
视图:
= f.file_field :logo
= f.hidden_field :logo_cache
- if @shop.logo.file?
%img{src: @shop.logo.url, alt: ''}