Answer the question
In order to leave comments, you need to log in
How to upload an excel file in Ruby on Rails so that it can be opened on android?
Here is the excel file upload code:
Controller:
def export
headers['Content-Type'] = 'application/vnd.ms-excel; charset=windows-1251'
headers['Content-Disposition'] = 'attachment; filename="report_payments.xls"'
headers['Cache-Control'] = ''
respond_to do |format|
format.html
format.xls
end
end
<table>....</table>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question