5

我正在开发 Rails 3.2.9 应用程序并使用 Carrierwave 作为文件上传器。Carriverwave 自述文件指出了获取正确 content_type 的方法:

  1. 将 require 'carrierwave/processing/mime_types' 添加到初始化程序或您的上传者。
  2. 将包含 CarrierWave::MimeTypes 添加到您的上传器。
  3. 将进程 :set_content_type 添加到您的上传者。

基于此,我的上传者如下:

# encoding: utf-8
require 'carrierwave/processing/mime_types'
class AttachmentUploader < CarrierWave::Uploader::Base
  include CarrierWave::MimeTypes
  storage :file
  def store_dir
    "#{base_store_dir}/#{model.id}"
  end
  process :set_content_type

end

在我的模型中,将上传器挂载为文件:

mount_uploader :file, AttachmentUploader

但是,上传文件后我总是得到 content_type nil :

1.9.3-p327 :013 > a.file.class
 => AttachmentUploader
1.9.3-p327 :010 > a.file.file
 => #<CarrierWave::SanitizedFile:0x00000004046330 @file="uploads/course/000/000/026/attachment_file/6/myIcon.png", @original_filename=nil, @content_type=nil> 

有什么建议吗?谢谢。

PS:我已经gem "mime-types", "~> 1.19"在我的Gemfile.

4

3 回答 3

2

您需要按照此处列出的说明进行操作:https ://github.com/carrierwaveuploader/carrierwave#setting-the-content-type

添加 mime-types gem,然后像这样设置您的上传器文件

require 'carrierwave/processing/mime_types'

class MyUploader < CarrierWave::Uploader::Base
    include CarrierWave::MimeTypes

    process :set_content_type
 end
于 2013-09-20T14:55:10.020 回答
2

在我安装上传器的模型文件中尝试过同样的问题

before_save :set_mime_type                   

    def set_mime_type
      self.mimetype = Mime::Type.lookup_by_extension(File.extname(self.cf_filename.to_s)[1..-1]) 
    end

注意:您需要在表中有一个 mimetype 字段

于 2013-10-09T09:56:39.957 回答
0

我刚刚遇到了完全相同的问题,但找不到简单的解决方法。

我的解决方法是在模型中添加一个 content_type 列,并在创建/更新过程中使用

@model.content_type = params[:file_upload][:attachment].content_type

这可行,但希望问题得到解决。

于 2013-04-18T03:07:50.397 回答