我需要对不是图像的文件上传进行一些后期处理 - 在回形针中我可以使用自定义后期处理器,但我无法在载波中找到任何方法。
Ruby 1.9.3,Rails 3.2.7和CarrierWave 0.6.2。
答案 0 :(得分:7)
OP的问题是如何处理不是图像的文件。
请在GitHub上查看此源文件: carrierwave/lib/carrierwave/uploader/processing.rb并查看评论。
您已经创建了自己的CarrierWave上传器子类并将其安装在您的模型中,如下所示:
def MyModel < ActiveRecord::Base
# this is where the uploaded file will be available in your model,
# as a `MyUploader` instance:
#
mount_uploader :uploaded_file, MyUploader
...
end
请注意,它已安装在ActiveRecord属性:uploaded_file
上。
这意味着当您从模型中访问:uploaded_file
时,您将获得上传的特定文件的CarrierWave上传程序实例。
您可以按照以下步骤在上传器中定义处理:
class MyUploader < CarrierWave:Uploader::Base
process :my_custom_processing => [param1,param2,param3]
def my_custom_processing(param1,param2,param3)
...
# e.g. you could call a method which is defined elsewhere,
# which operates on a file:
my_nifty_file_processor( self.uploaded_file )
#
# or you could just do this directly:
uploaded_data = self.uploaded_file.read
...
end
end
在my_nifty_file_processor
内,您只需在传入的对象上调用read
即可读取该文件。
CarrierWave允许您在任何上传器实例(=上传文件的任何实例)上调用read
,它将读取该文件。
再提示一下:
有时您需要访问上载文件的ActiveRecord模型。
只需在您的上传代码中访问它,如下所示:
self.model
这使您可以直接在AR模型中存储有关上传文件的其他信息,例如格式。
答案 1 :(得分:1)
我写了一篇关于如何创建自定义后处理器以创建视频缩略图的博客文章,也许你会发现它很有用。
https://prograils.com/posts/video-encoding-processor-for-carrierwave/