what is the role of sub-directory app/controllers and app/helpers?
Answer Posted / Shipra Mehrotra
In a typical Ruby on Rails application, app/controllers stores all controller classes that handle user requests. Each controller handles requests for a specific part of the application. app/helpers contains modules that provide helper methods to be used in views.nThese helper methods can simplify the code in the view by providing reusable functions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers