vote up 0 vote down star

Hi, this question is related to routing-filter.

I have this in my view:

<% form_for :post, :url => {:action => "show"} do |f| %>

which translates in the browser to this:

<form action="/en/posts/show" method="post">

after changing the I18n.locale e.g.

I18n.locale = :en

the html becomes:

<form action="/en/posts/72" method="post">

and the action is not working and I get this error:

Unknown action

No action responded to 72.

Sure, there is no action like 72. This number is the show action's input of course. And it is correct post number. So if I put this address localhost:3000/en/posts/72 to the browser, then it gives me the page without a problem.

So why it doesn't work in the form then?

Thanks.

flag
1  
Why are you posting to the show action? – askegg Aug 18 at 0:22
Why not? The default show action's code from the scaffolding has the @post = Post.find( params[:id],... so it should take the id right? – talentjr Aug 18 at 15:32
POSTing implies sending data to update an object. Show retrieves an object for display and a GET request is sufficient and RESTful. – askegg Aug 18 at 23:51

1 Answer

vote up 0 vote down

I just found that is not related to the routing filter. But Rails generates different html form tags depending on what's in the url. Which is still strange to me. Anyone?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.