2

我正在使用 GridFs 存储 Excel 文件等。我想使用电子表格 gem 来解析这些。

我试过这个,但它(显然!)没有工作:

1.9.3p194 :036 > db = Mongo::Connection.new.db(Mongoid.database.name)
1.9.3p194 :037 > grid = Mongo::GridFileSystem.new(db)
1.9.3p194 :038 > f = grid.open('test1.xls', 'r')
 => #<GridIO _id: 500ef7cdc5ebb515c9000005>
1.9.3p194 :039 > Spreadsheet.open(f)
NoMethodError: undefined method `flush' for #<GridIO _id: 500ef7cdc5ebb515c9000005>

您是否有一个很好的建议,将 GridIO 类“转换”或“包装”成一个类似 IO::File 的实例,以便我可以将 Excel 文件传递​​给电子表格打开方法。

电子表格打开方法采用 IO 实例或指定磁盘路径的字符串(后者在使用 GridFS 时无用):

(Object) open(io_or_path, mode = "rb+", &block)

谢谢!

4

2 回答 2

2

看起来这是 ruby​​ 驱动程序的所需功能,但尚不存在。 https://jira.mongodb.org/browse/RUBY-368

您可能可以将一个块传递给 Spreadsheet.open,正如 jira 票证中所建议的那样:

db = Mongo::Connection.new.db(Mongoid.database.name)
Spreadsheet.open('filename', 'w') do |f|
   gridfs = Mongo::GridFileSystem.new(db)
   gridfs_file = gridfs.open('test1.xls', 'r')
   f.write(gridfs_file.read()) until gridfs_file.eof?
end
于 2012-07-24T22:02:22.127 回答
1

艾米丽的指点很有帮助。暂时,最终使用了一个临时文件:

Tempfile.open(["test", ".xls"]) do |fh|
 gridfs = Mongo::GridFileSystem.new(Mongoid.database)
 gridfs_file = gridfs.open('test1.xls', 'r')
 fh.binmode
 fh.write(gridfs_file.read)
 @xls = Excel.new(fh)
 fh.close
end
于 2012-07-27T08:06:46.830 回答