What is the difference between params[:id] and params[:zombie_id]? what is that :id in the params hash? What about params[:zombie]?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by pst, jdoe, Thilo, Nik...., Graviton Nov 21 '12 at 2:22
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I'd prefer you read http://guides.rubyonrails.org/routing.html first.
you can pass zombie_id as, :id in params generally in rails refer to the 'member' which you are refering to e.g.
by default would route something like, and in your action you can access 4 using params[:id] |
|||
|
|