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

Merge pull request #21048 from yui-knk/fix/guide_about_action_pack2

[ci skip] Add a link to action_controller_overview.html
This commit is contained in:
Yves Senn 2015-07-28 20:56:14 +09:00
commit 6f4421e4d9

View file

@ -15,7 +15,7 @@ After reading this guide, you will know:
What is Action View?
--------------------
In Rails, web requests are handled by Action Controller and Action View. Typically, Action Controller will be concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
In Rails, web requests are handled by [Action Controller](action_controller_overview.html) and Action View. Typically, Action Controller will be concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
Action View templates are written using embedded Ruby in tags mingled with HTML. To avoid cluttering the templates with boilerplate code, a number of helper classes provide common behavior for forms, dates, and strings. It's also easy to add new helpers to your application as it evolves.