hartog
February 28, 2007, 3:33pm
1
Hi,
I am quite new to Ruby and Rails, although I have cracked most of my
puzzles by googling and trying I just can’t get this one to get going
for me.
Here is my problem:
I am trying to cough up a nice text/csv file from my browser and would
like to set this:
Content-type: text/csv
Content-disposition: attachment; filename=“the_file.csv”
in my HTTP response header, but so far I haven’t found any ‘‘tricks’’
to achieve the ‘Content-disposition’ part.
Any help would be dearly appreciated.
Kind regards,
Hartog.
hartog
February 28, 2007, 3:37pm
2
in
class ApplicationController < ActionController::Base
before_filter :set_headers
private
def set_headers
@headers [“Content-Type”] = “text/csv”
@headers [“Content-disposition”] = ‘attachment;
filename=“the_file.csv”’
end
end
very easy
hartog
February 28, 2007, 4:17pm
3
I have a problem that may be resolved with this, if I understand it
correctly. I have one controller/view that keeps rendering as text/
plain … that’s how the headers come back from the server. My
content type is set correctly in the header in my layout file.
Can I do something similar in my specific controller to force it to
render as text/html instead of text/plain?
Thanks
Zeff
hartog
February 28, 2007, 4:01pm
4
On Wed, Feb 28, 2007 at 06:36:34AM -0800, S2 wrote:
like to set this:
class ApplicationController < ActionController::Base
before_filter :set_headers
private
def set_headers
@headers [“Content-Type”] = “text/csv”
@headers [“Content-disposition”] = ‘attachment;
filename=“the_file.csv”’
end
end
Thank you!
very easy
Once you how, yes indeed. :->
I do however think that render() (from: ApplicationController::Base)
should allow for a ‘:disposition’ option as well.
Where should I go for such a feature request?
Grtz,
Hartog
hartog
March 1, 2007, 4:13am
5
hartog wrote:
Content-type: text/csv
Content-disposition: attachment; filename=“the_file.csv”
http://www.rubyinside.com/railstips/tag/send_file
–
Phlip
Redirecting... ← NOT a blog!!!
hartog
March 1, 2007, 3:54am
6
On 2/28/07, Hartog C. de Mik [email protected] wrote:
very easy
Once you how, yes indeed. :->
I do however think that render() (from: ApplicationController::Base)
should allow for a ‘:disposition’ option as well.
send_data the_csv_data, :filename => ‘data.csv’, :type => ‘text/csv’
Where should I go for such a feature request?
Submit requests, bugs, and patches at http://dev.rubyonrails.org/
jeremy