What is the functionality of Model views and controllers
Answer Posted / abhi2810
MVC is a pattern for the architecture of a software
application. It separates an application into the following
three components:
* models, for handling data and business logic
* controllers, for handling the user interface and
application logic
* views, for handling graphical user interface objects
and presentation logic
This separation results in user requests being processed as
follows:
1. The browser, on the client, sends a request for a page
to the controller on the server.
2. The controller retrieves the data it needs from the
model in order to respond to the request.
3. The controller renders the page and sends it to the view.
4. The view sends the page back to the client for the
browser to display.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is unit testing (in classical terms)? What is the primary technique when writing a test ?
In how many ways you can create rails layout http response.
what is active record?
Explain me what is the role of rails controller?
What is the difference between save and save?
What is the purpose of require_relative in ruby?
what are helpers and how to use helpers in ror?
What is the difference between render and redirect?
What are the servers supported by ruby on rails?
Difference between argument and parameter in ruby on rails ?
Why ruby on rails is used for?
What are naming conventions?
What is rails scaffolding?
what is the difference between calling super() and super call?
Do you know what is sweeper in rails?