上传文件后,是否可以在@R_130_301@之前打开该文件?
我正在使用Paperclip将文件保存在/ public文件夹中.
class Book < ActiveRecord::Base before_save :open_it has_attached_file :upload def open_it a_file = open(upload.url) # this doesn't work before save ? # ... end end
解决方法
找到了:
def model_method f = open(self.upload.queued_for_write[:original].url) end
更新:
根据ecoologic的响应,使用.path而不是.url来获取Paperclip gem的更新版本