Here's the code:
render :file => @somedir + "/blah.xml"
...but the resulting MIME type is text/html when I check in FireBug. How do I specify a MIME type in this case?
|
|
Here's the code:
...but the resulting MIME type is text/html when I check in FireBug. How do I specify a MIME type in this case? |
|||
|
|
|
Take a look here. Basically you need to use render :xml => blah.to_xml |
||
|
|
|
|
Thanks, but the request has no extension, and I think responds_to uses the extension to determine the format. Am I wrong? |
||
|
|
|
|
Actually there are two ways to set the content-type (I think this is what you mean by mime-type). You should use the second option, if it works for your Rails version.
Hope this helps! |
||
|
|
|
|
What about
? Hope that helps. |
||
|
|
|
|
|
||
|
|
|
|
nice work! now i got solution! |
||
|
|