这是我的行动:
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 gem和this code动态生成excel文件并发送下载。
在Linux和Windows上的firefox中单击报告的链接(domain / report / id)时,将下载该文件。当用IE 6在Windows中单击时,它会显示:
Internet Explorer无法从<id>
<domain>
我被告知IE9也不起作用。
我尝试了调度附件,application / xls mime类型,没有帮助。
如何发送excel二进制文件以供Internet Explorer在rails上下载?