1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[getting started] [ci skip] Just want to get post params

This commit is contained in:
Ryan Bigg 2012-03-17 20:40:29 -06:00
parent edad287e84
commit 62d3693288

View file

@ -371,7 +371,7 @@ When a form is submitted, the fields of the form are sent to Rails as _parameter
<ruby> <ruby>
def create def create
render :text => params.inspect render :text => params[:post].inspect
end end
</ruby> </ruby>