Direct downloading a xls file without writing it to the directory by Spreadsheet gem

后端 未结 4 688
天命终不由人
天命终不由人 2020-12-13 14:29

I am using this Spreadsheet gem to export xls file.

I have the following codes in my controller:

def export
  @data = Data.all

  book = Spreadsheet:         


        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-13 14:57

    You can send it to the browser without saving it as a local file at all as follows

    spreadsheet = StringIO.new 
    book.write spreadsheet 
    send_data spreadsheet.string, :filename => "yourfile.xls", :type =>  "application/vnd.ms-excel"
    

提交回复
热议问题