如何使用 ruby​​zip 将 zip 存档中的文件附加到 ActiveStorage 对象 Rails 5

How can I use rubyzip to attach files in a zip archive to an ActiveStorage object Rails 5

我的模型有一个使用 ActiveStorage 的附件:

class ProofreadDocument < ApplicationRecord

  has_one_attached :file

end

我正在执行一项将文件附加到 proofread_document 的 rake 任务。 这些文件被压缩成一个 zip 存档。

我了解到我可以通过阅读 ActiveStorage 文档附加如下文件:

@proofread_document.file.attach(io: File.open('/path/to/file'), filename: 'file.pdf')

我的 rake 任务中有以下内容:

    Zip::File.open(args.path_to_directory) do |zipfile|
          zipfile.each do |file|
            proofread_document = ProofreadDocument.new()
            proofread_document.file.attach(io: file.get_input_stream.read, filename: file.name)
            proofread_document.save
          end
     end

这会产生以下错误:

NoMethodError: undefined method `read' for #<String:0x007f8d894d95e0>

我需要一次读取每个文件的内容以将它们附加到 proofread_document 实例。我该怎么做?

我成功地将输入流包装在 StringIO 对象中,如下所示:

self.file.attach(io: StringIO.new(zip_entry.get_input_stream.read), filename: zip_entry.name, content_type: MS_WORD_CONTENT_TYPE)