What is the functionality of Model views and controllers
Answers were Sorted based on User's Feedback
Answer / guest
Model:Model is responsible for maintaining the database.
views:View is responsible for generating user interface.
controllers:Getting input request from browser and generate
outgoing response.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / 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 |
What is action cable?
What do you understand by rails migration and what it can do?
Do you know what is sweeper in rails?
What is the difference between render and redirect?
Is Ruby is a Scripting Language or Compiled Language?
Is ruby on rails dying?
what is the difference between calling super() and super call?
What is the purpose of auto_load in ruby?
How is visibility of methods changed in ruby (encapsulation) ?
What I have to do to view my project always on browser?
When are self.up and self.down methods used?
How do I find only duplicate entries in a database table?