How is the model view controller framework used in ruby on rails?

devquora
devquora

Posted On: Feb 22, 2018

 

The web development is usually divided into three subsystems closely integrated to each other. They are: –
  • Model (active record): all the data logic is handled by this model which in rails is known as the active record library. It acts a bridge between the ruby program code and the main database.
  • View (action view): the end user sees the view part of the application.
  • Controller (action controller): it acts as a data broker of an application. It also helps in handling the logic which allows the model and view to communicate with one another.

This is how the model view controller framework used in ruby on rails.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Ruby on Rails Interview Questions

    Mention all the naming conventions in ruby on rails.

    Following is a list of some naming conventions used in ruby on rails:Variables– it is used for the declaration of v..

    Ruby on Rails Interview Questions

    Explain the features of ruby on rails.

    Some of the features of ruby on rails are listed below-Meta-programming: code generation is used but for heavy liftin..

    Ruby on Rails Interview Questions

    What do you understand by rails?

    It is a web application framework which is written in ruby language and is developed by David Hansson. It is an open so..