diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-27 19:22:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 19:22:04 +0900 |
commit | 17ad4eb6fb25e0c1dbd6772718a9097d63b64ad2 (patch) | |
tree | 14e21d2fb0d5042fa23edf426d785e35de0969ba | |
parent | ba565184748d66878a4320971aeb669ceb2c6ad0 (diff) | |
parent | 181a9fdafe1fef515db3dbd3d580e55e283afc9a (diff) | |
download | rails-17ad4eb6fb25e0c1dbd6772718a9097d63b64ad2.tar.gz rails-17ad4eb6fb25e0c1dbd6772718a9097d63b64ad2.tar.bz2 rails-17ad4eb6fb25e0c1dbd6772718a9097d63b64ad2.zip |
Merge pull request #31568 from bogdanvlviv/update-action_view_overview-guide
Update "Action View Overview" guide [ci skip]
-rw-r--r-- | guides/source/action_view_overview.md | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index fde2040173..1cba5c6fb6 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -807,20 +807,22 @@ The core method of this helper, `form_for`, gives you the ability to create a fo The HTML generated for this would be: ```html -<form action="/people/create" method="post"> - <input id="person_first_name" name="person[first_name]" type="text" /> - <input id="person_last_name" name="person[last_name]" type="text" /> - <input name="commit" type="submit" value="Create" /> +<form class="new_person" id="new_person" action="/people" accept-charset="UTF-8" method="post"> + <input name="utf8" type="hidden" value="✓" /> + <input type="hidden" name="authenticity_token" value="lTuvBzs7ANygT0NFinXj98tfw3Emfm65wwYLbUvoWsK2pngccIQSUorM2C035M9dZswXgWTvKwFS8W5TVblpYw==" /> + <input type="text" name="person[first_name]" id="person_first_name" /> + <input type="text" name="person[last_name]" id="person_last_name" /> + <input type="submit" name="commit" value="Create" data-disable-with="Create" /> </form> ``` The params object created when this form is submitted would look like: ```ruby -{ "action" => "create", "controller" => "people", "person" => { "first_name" => "William", "last_name" => "Smith" } } +{"utf8" => "✓", "authenticity_token" => "lTuvBzs7ANygT0NFinXj98tfw3Emfm65wwYLbUvoWsK2pngccIQSUorM2C035M9dZswXgWTvKwFS8W5TVblpYw==", "person" => {"first_name" => "William", "last_name" => "Smith"}, "commit" => "Create", "controller" => "people", "action" => "create"} ``` -The params hash has a nested person value, which can therefore be accessed with params[:person] in the controller. +The params hash has a nested person value, which can therefore be accessed with `params[:person]` in the controller. #### check_box |