我使用单元格样式使用了这个模板:
show_xls.xls.erb
<?xml version="1.0"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<Styles>
<Style ss:ID="h1" ss:Name="First">
<Borders>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
</Styles>
<Worksheet ss:Name="Sheet1">
<Table>
<Row>
<Cell><Data ss:StyleId="h1" ss:Type="String">ID</Data></Cell>
<Cell><Data ss:StyleId="h1" ss:Type="String">Name</Data></Cell>
<Cell><Data ss:StyleId="h1" ss:Type="String">Release Date</Data> </Cell>
<Cell><Data ss:StyleId="h1" ss:Type="String">Price</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
这是我的控制器功能:
预测控制器.rb
def show_xls
respond_to do |format|
format.html
format.xls
end
end
这是我的路线:
路线.rb
get "forecast/show_xls" => "forecast#show_xls", as: :forecast_report_excel
这是我的按钮,单击时会生成 excel:
<%= link_to 'Generate Excel',forecast_report_excel_path(format: :xls), class: 'btn btn-primary' %>
我得到了一个电子表格,但没有应用单元格样式。
这是为我生成的电子表格:
为什么我的样式没有应用到电子表格中?我究竟做错了什么?请帮忙!