gpt4 book ai didi

ruby-on-rails - 未初始化的常量 Paperclip::Error with paperclip-ffmpeg

转载 作者:行者123 更新时间:2023-12-04 23:00:38 25 4
gpt4 key购买 nike

我正在使用 Paperclip 和 paperclip-ffmpeg 来处理上传。下面是我的代码

Assets 类 < ActiveRecord::Base

 belongs_to :profile  
has_attached_file :photo, :styles => {
:mobile => {:geometry => "400x300", :format => 'mp4', :streaming => true}
}, :processors => [:ffmpeg]


validates_attachment_content_type :photo, :content_type => ['image/jpeg', 'image/png', 'image/gif', 'application/msword', 'application/pdf', 'video/x-flv']

结尾

当我上传图像或视频文件时,它工作正常。但是当我上传 PDF 或 doc

文件,就会出现这个错误。
       "uninitialized constant Paperclip::Error" 

有什么帮助吗??

或者如果上传文件是 PDF 或 Doc,如果条件验证,我该如何放置。然后我可以跳过这个

下面的代码。因为这是文件类型为 PDF 或 Doc 时出错的原因。
        ":styles => {
:mobile => {:geometry => "400x300", :format => 'mp4', :streaming => true}
}, :processors => [:ffmpeg]"

谢谢

最佳答案

我已经在 LinkedIn 上为您询问了 Kirti Thorat - 她可能比我更适合处理 Paperclip::Error问题

Or How i can put if condition validation if upload file is PDF or Doc



在格式化 has_attached_file 方面使用 lambda 的方法, here's what we've done before :
has_attached_file :attachment,
styles: lambda { |a| a.instance.is_image? ? {:small => "x200>", :medium => "x300>", :large => "x400>"} : {:thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10}, :medium => { :geometry => "300x300#", :format => 'jpg', :time => 10}}},
:processors => lambda { |a| a.is_video? ? [ :ffmpeg ] : [ :thumbnail ] }

def is_video?
attachment.instance.attachment_content_type =~ %r(video)
end

def is_image?
attachment.instance.attachment_content_type =~ %r(image)
end

这是相对较旧的代码,所以为了让您保持更新, Paperclip 4.0发布了一个新的媒体欺骗功能,它基本上直接检查您的文件(而不是扩展名)的内容类型。 Kirti对此了解很多,所以最好等待她的回答

如果你想要我,我可以尝试一下

关于ruby-on-rails - 未初始化的常量 Paperclip::Error with paperclip-ffmpeg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23513061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com