0

私のアプリケーションは xls ファイルをエクスポートする方法を知っていますが、エクスポートされたファイルは LibreOffice で開いた場合にのみすべての情報を表示し、Microsoft Excel はファイル全体の一部のみを表示します。

私のツアークラス:

class Tour < ActiveRecord::Base
  belongs_to :tournament
  has_and_belongs_to_many :pilots, :join_table => :rounds


  def self.to_csv(options = {})
    CSV.generate(options) do |csv|
      csv << column_names
      all.each do |tour|
        csv << tour.attributes.values_at(*column_names)
      end
    end
  end
end

トーナメント コントローラー:

  def show
    @tournament = Tournament.includes(:pilots => :country).find(params[:id])
    @pilots = @tournament.pilots
    @tours = @tournament.tours.includes(:pilots => :country)

    respond_to do |format|
      format.html
      format.xls
    end
  end

ショー ビュー内のリンク:

= link_to "Download xls", admin_tournament_path(format: "xls"), :class => "btn"

そして私のshow.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">
  <Worksheet ss:Name="Sheet1">
    <% @tours.each_with_index do |tour, index| %>
      <Table>
        <Row></Row>
        <Row>
          <Cell><Data ss:Type="String"><%= "Tour #{index + 1}" %></Data></Cell>
        </Row>
        <Row>
          <Cell><Data ss:Type="String">#</Data></Cell>
          <Cell><Data ss:Type="String">Pilot Name</Data></Cell>
          <Cell><Data ss:Type="String">Pilot Country</Data></Cell>
        </Row>
      <% tour.pilots.each_with_index do |pilot, index| %>
        <Row>
          <Cell><Data ss:Type="Number"><%= index + 1 %></Data></Cell>
          <Cell><Data ss:Type="String"><%= pilot.name %></Data></Cell>
          <Cell><Data ss:Type="String"><%= pilot.country.name %></Data></Cell>
        </Row>
      <% end %>
      </Table>
    <% end %>
  </Worksheet>
</Workbook>

ダウンロードしたファイルを Microsoft Excel で開くと、最初のラウンドのみが表示され、LibreOffice では既存の 13 ラウンドがすべて表示されます。

4

1 に答える 1

1

実際、ワークシート タイプ xsdによると、LibreOffice がそれを表示できることにはかなり驚いています。:

  .....
  <xsd:element name="Table" type="TableType" minOccurs="0">
        <xsd:annotation>
            <xsd:documentation>Defines the table to contain the cells of the current worksheet. Only one instance of a Table element is valid for a single worksheet.</xsd:documentation>
        </xsd:annotation>
    </xsd:element>
    .....

したがって、次のように 1 つのテーブル要素内で行を出力することをお勧めします。

 <Table>
 <% @tours.each_with_index do |tour, index| %>      
    <Row></Row>
    <Row>
      <Cell><Data ss:Type="String"><%= "Tour #{index + 1}" %></Data></Cell>
    </Row>
    <Row>
      <Cell><Data ss:Type="String">#</Data></Cell>
      <Cell><Data ss:Type="String">Pilot Name</Data></Cell>
      <Cell><Data ss:Type="String">Pilot Country</Data></Cell>
    </Row>
  <% tour.pilots.each_with_index do |pilot, index| %>
    <Row>
      <Cell><Data ss:Type="Number"><%= index + 1 %></Data></Cell>
      <Cell><Data ss:Type="String"><%= pilot.name %></Data></Cell>
      <Cell><Data ss:Type="String"><%= pilot.country.name %></Data></Cell>
    </Row>
  <% end %> 
<% end %>
</Table>

または、次のように別のワークシートに配置することもできます。

<% @tours.each_with_index do |tour, index| %>
  <Worksheet ss:Name="<%= "Tour #{index + 1}-Sheet" %>">
  <Table>
    <Row></Row>
    <Row>
      <Cell><Data ss:Type="String"><%= "Tour #{index + 1}" %></Data></Cell>
    </Row>
    <Row>
      <Cell><Data ss:Type="String">#</Data></Cell>
      <Cell><Data ss:Type="String">Pilot Name</Data></Cell>
      <Cell><Data ss:Type="String">Pilot Country</Data></Cell>
    </Row>
  <% tour.pilots.each_with_index do |pilot, index| %>
    <Row>
      <Cell><Data ss:Type="Number"><%= index + 1 %></Data></Cell>
      <Cell><Data ss:Type="String"><%= pilot.name %></Data></Cell>
      <Cell><Data ss:Type="String"><%= pilot.country.name %></Data></Cell>
    </Row>
  <% end %>
  </Table>
  </Worksheet>
<% end %>

役に立てば幸いです、ありがとう。

于 2013-07-14T23:06:01.500 に答える