Rails send_data excel在firefox中运行,但不适用于IE

时间:2013-06-19 08:13:24

标签: ruby-on-rails ruby-on-rails-3 excel download export-to-excel

这是我的行动:

def report
  spreadsheet = StringIO.new
  [%w(o hai)].dump_to_excel(spreadsheet)

  send_data spreadsheet.string, :filename=> "#{f.name}.xls", 
    :type=> "application/vnd.ms-excel"
end

我使用spreadsheet gemthis code动态生成excel文件并发送下载。

在Linux和Windows上的firefox中单击报告的链接(domain / report / id)时,将下载该文件。当用IE 6在Windows中单击时,它会显示:

Internet Explorer无法从<id>

下载<domain>

我被告知IE9也不起作用。

我尝试了调度附件,application / xls mime类型,没有帮助。

如何发送excel二进制文件以供Internet Explorer在rails上下载?

0 个答案:

没有答案