0

我们正在使用 refile gem 在我们的平台上显示图像,它们在除 Microsoft Edge 之外的不同浏览器上运行良好。我应该了解 Microsoft Edge 的其他格式或限制吗?

(我没有Microsoft Edge,所以无法直接测试)

任何帮助都会很棒。谢谢。

4

1 回答 1

1

我检查了 MS Edge 25.10586.0.0 / EdgeHTML 13.10586 并且没有显示图像。

我想这是因为图像是作为应用程序/八位字节流发送的,而 Edge 没有足够的信息来显示它们(需要确认)。

但是在refile github 页面上,您可以看到可以为每个加载的文件添加元数据,例如:

class StoreMetadata < ActiveRecord::Migration
  def change
    add_column :users, :profile_image_filename, :string
    add_column :users, :profile_image_size, :integer
    add_column :users, :profile_image_content_type, :string
  end
end

这些字段将在文件加载后自动填充并修复我的重新文件示例应用程序中的问题。

免责声明:请小心以下操作,请在生产环境执行此操作之前进行一些测试

可以将缺少的信息添加到现有文件中。

目前Refile似乎只使用文件扩展名来提取内容类型。因此,我们需要提取文件内容的内容类型,并为每个上传的文件创建一个具有相应扩展名的文件名。

可能有很多方法可以做到这一点。我将描述我在我的 refile 应用程序中使用的一种方法。

这是我的用户模型

class User < ActiveRecord::Base
  attachment :profile_image
end

首先运行之前的迁移以添加缺失的字段。

在 gemfile 中添加 gemmimemagic并运行bundel install. 这可以通过内容来确定文件的内容类型。

然后为每个User提取 profile_image 的内容类型并添加正确的文件名。

User.all.each do |u|
  subtype = MimeMagic.by_magic(u.profile_image.read).subtype
  u.profile_image_filename = "profile_image.#{subtype}" if u.profile_image_filename.nil?
  u.save
 end

就这样。

于 2016-08-23T10:59:07.570 回答