I have this form in my application.html.erb.
<%= form_tag(:action=>"index", :controller=>"posts") %>
<p>
// code here
</p>
I dont understand why is this getting directed to posts->create instead of posts->index?
Thanks.
|
I have this form in my application.html.erb.
I dont understand why is this getting directed to Thanks. |
||||
|
|
|
Basically, Rails observes and obeys "RESTful" web service architecture. With REST and Rails, there are seven different ways to interact with a server regarding a resource. With your current code, specifying the form's action as index doesn't make sense: Rails' form helpers can either POST, PUT or DELETE. If you wanted to create a post, then redirect to the index, you can do so in the applicable controller action:
While your form would look like:
|
|||
|
|
|
You seem to be a little mixed up with respect to the uses for each action. Here's a quick summary of typical RESTful usage: Index -> view a list of items The reason your routes file is not taking you to index is because index is not an action where posts are typically created or updated. The best way is to go RESTful. Unless you have a very unusual situation, the best way to set your system up is probably a little like this:
By putting the form in a partial called |
|||||||
|