1

我需要将数据库表中的所有产品生成到 XML 文件中。因为我的应用在 Heroku 上运行,所以我需要使用 Amazon S3 作为存储。

以下是有关如何保存图像的示例:

has_attached_file :photo,
       :styles => {
       :thumb=> "100x100#",
       :small  => "400x400>" },
     :storage => :s3,
     :s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
     :path => "/:style/:id/:filename"

这让我有点困惑......因为我不确定这个任务的逻辑。我的想法是在控制器中运行一个动作(比如create_xml_feedProducts

 xml = Builder::XmlMarkup.new( :indent => 2 )
 xml.instruct! :xml, :encoding => "ASCII"
 xml.product do |p|
   p.name "Test"
 end

但是问题来了——我不知道如何将新创建的文件保存到 Amazon S3 Bucket 中。

我会感谢每一个进步,谢谢

4

1 回答 1

5

首先,创建一个活动记录类来保存您上传的 XML 文件。在此之后,您可以编写创建 xml 字符串的逻辑,首先通过创建 XmlUploader 类的新实例来创建新文件,然后创建所需的 xml 字符串,将其保存在文件中,然后将此文件分配为附件文件. 保存后,您的 xml 文件将上传到 s3。

class XmlUploader < ActiveRecord::Base
  has_attached_file :uploaded_file, :storage => :s3,
  :s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
  :path => "/:id/:filename"

  def create_uploaded_file
    xml = ::Builder::XmlMarkup.new( :indent => 2 )
    xml.instruct! :xml, :encoding => "ASCII"
    xml.product do |p|
      p.name "Test"
    end
    file_to_upload = File.open("some-file-name", "w")     
    file_to_upload.write(xml)
    file_to_upload.close()
    self.uploaded_file = File.open("some-file-name")
    self.save!
  end
end

class CreateXmlUploaders < ActiveRecord::Migration
  def change
    create_table :xml_uploaders do |t|
      t.attachment :uploaded_file
      t.timestamps
    end
  end
end

xml_file = XmlUploader.new
xml_file.create_uploaded_file
于 2012-11-14T00:20:17.597 回答