Bober
December 5, 2007, 12:50pm
1
Hello!
in folder public/pdf I have a file “test.pdf”
when I try it open http://127.0.0.1:3001/pdf/test.pd
everything is ok, browser open test.pdf.
but when I try to redirect in method
(redirect_to_path “/pdf/test.pdf” )
I see error
no route found to match “/pdf/test.pdf” with {:method=>:get}
what is wrong?
Bober
December 5, 2007, 2:30pm
2
On 12/5/07, Bober [email protected] wrote:
no route found to match “/pdf/test.pdf” with {:method=>:get}
what is wrong?
…that you’re asking a Rails on ruby-talk. I also suspect that a Google
search would answer your question quickly, although I’m not sure
because I don’t actually use rails.
-austin
Bober
December 5, 2007, 9:58pm
3
On Wed, Dec 05, 2007 at 08:50:14PM +0900, Bober wrote:
Hello!
in folder public/pdf I have a file “test.pdf”
when I try it open http://127.0.0.1:3001/pdf/test.pd
everything is ok, browser open test.pdf.
but when I try to redirect in method
(redirect_to_path “/pdf/test.pdf” )
Are you sure that leading / is supposed to be there? Maybe it should be
“pdf/test.pdf” instead of “/pdf/test.pdf”.
I’m not really much of a Rails user (I’ve just toyed with it a little),
but that’s the first thing that leaps to mind.