Экспортировать Excel в ruby ​​на рельсы - PullRequest
3 голосов
/ 29 апреля 2010

Я хочу экспортировать информацию о странице в Excel, кто подскажет, как мне это сделать? спасибо!

1 Ответ

9 голосов
/ 29 апреля 2010

Как-то так может помочь:

http://blog.dhavalparikh.co.in/2009/04/export-to-excel-in-ruby-on-rails/

Контроллер

class UserController < ApplicationController
  def export
    headers['Content-Type'] = "application/vnd.ms-excel"
    headers['Content-Disposition'] = 'attachment; filename="report.xls"'
    headers['Cache-Control'] = ''
    @users = User.find(:all)
  end

View

export.html.erb

<%= link_to "Export as Excel", export_person_url %>

_report.html.erb

<table border="1">
  <tr>
    <th>Name</th>
  </tr>
  <% @users.each do |u| %>
  <tr>
   <td><%= u.name %></td>
  <% end %>
 </tr>
</table>
...