上传文件后,是否可以在保存模型之前打开该文件?
我正在使用 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
上传文件后,是否可以在保存模型之前打开该文件?
我正在使用 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