导出到Excel - 将默认“另存为类型”更改为Microsoft Office Excel工作簿(* xls)

时间:2011-03-17 06:22:15

标签: ruby-on-rails ruby ms-office export-to-excel

我正在使用我的Ruby on Ralis应用程序进行Excel导出。我没有使用任何gem或插件(因为我们的要求不同,我们无法使用它们)。我们使用Ruby on Rails附带的内置“format.xls”支持。

问题在于,当我们获取Excel时,Save as Type会显示在网页上。我想将其更改为Microsoft Office Excel Workbook (*xls)。怎么做?

以下是我的controller action code和我们获得Excel的respective view

控制器中的Get_excel方法

def get_excel
    format.xls do
        headers['Content-Type'] = "application/vnd.ms-excel"
        headers["Content-disposition"] = 'inline;  filename="myexcel.xls"'
        headers['Cache-Control'] = ''
    end
end

VIEW(get_excel.xls.erb)

<html xmlns:o="urn:schemas-microsoft-com:office:office
      xmlns:x="urn:schemas-microsoft-com:office:excel"
      xmlns="http://www.w3.org/TR/REC-html40"
      xmlns:ss = "urn:schemas-microsoft-com:office:spreadsheet" />
<head>
  <meta http-equiv=Content-Type content="text/html; charset=UTF-8"/>
  <meta name=ProgId content=Excel.Sheet/>
  <meta name=Generator content="Microsoft Excel 11"/>
  <style type="text/css">
    @page {
      mso-header-data : '&R CONFIDENTIAL';
      margin: 0.75in 0.20in 0.5in 0.20in;
      mso-header-margin: 0.25in;
      mso-footer-margin:0.25in;
      mso-page-orientation: landscape;
    }
    table{
      page-break-inside: avoid;
    }
    td{
      white-space:nowrap;
    }
  </style>

  <!--[if gte mso 9]><xml>
 <x:ExcelWorkbook>
  <x:ExcelWorksheets
   <x:ExcelWorksheet>
    <x:Name>Gantt Detail</x:Name>
    <x:WorksheetOptions>  
    <x:DefaultRowHeight>319</x:DefaultRowHeight>  
     <x:Print>
      <x:FitHeight>15</x:FitHeight>
      <x:ValidPrinterInfo/>
      <x:Scale>74</x:Scale>
      <x:HorizontalResolution>600</x:HorizontalResolution>
      <x:VerticalResolution>600</x:VerticalResolution>
     </x:Print>
     <x:Selected/>
     <x:FrozenNoSplit/>
     <x:SplitHorizontal>5</x:SplitHorizontal>
     <x:TopRowBottomPane>5</x:TopRowBottomPane>
     <x:ActivePane>2</x:ActivePane>
          <x:Panes>
            <x:Pane>
            <x:Number>3</x:Number>
            </x:Pane>
            <x:Pane>
            <x:Number>2</x:Number>
            </x:Pane>
     <x:ProtectContents>False</x:ProtectContents>
     <x:ProtectObjects>False</x:ProtectObjects>
     <x:ProtectScenarios>False</x:ProtectScenarios>
    </x:WorksheetOptions>
   </x:ExcelWorksheet>
  </x:ExcelWorksheets>
  <x:WindowHeight>8580</x:WindowHeight>
  <x:WindowWidth>12120</x:WindowWidth>
  <x:WindowTopX>120</x:WindowTopX>
  <x:WindowTopY>45</x:WindowTopY>
  <x:ProtectStructure>False</x:ProtectStructure>
  <x:ProtectWindows>False</x:ProtectWindows>
 </x:ExcelWorkbook>
 <x:ExcelName>
  <x:Name>Print_Titles</x:Name>
  <x:SheetIndex>1</x:SheetIndex>
  <x:Formula>='Gantt Detail'!$3:$5</x:Formula>
 </x:ExcelName>
</xml><![endif]-->

</head>
<body>
  <table>
<tr>some code</tr>
<tr>some code</tr>
<tr>some code</tr>
<tr>some code</tr>
<tr>some code</tr>
  </table>
</body>

1 个答案:

答案 0 :(得分:0)

在config / initializers / mime_types.rb

Mime::Type.register "application/vnd.ms-excel", :xls

然后您不需要直接在方法中设置标题。

我不确定这是否会阻止您被提示,但这就是我将HTML表格作为xls提供的方式,并且没有人在打开它们时遇到任何问题。

我也没有设置文件名,因为方法名称会为它命名(在你的情况下是get_excel.xls)。 我也没有设置所有xml和xmlns的东西。它只是有效。