top of page

MVC

  • Writer: sondip poul singh
    sondip poul singh
  • Jan 10, 2019
  • 1 min read

model is like a fridge full of ingredients.controller uses those ingredients and know how to make them up.view is what people see in the table.

let us suppose we have a to do app.then the todo list is like model.view is the visualization of the list.Finally, the Controller could define how a user adds a task, or marks another as complete. The Controller connects the View’s add button to the Model, so that when you click “add task,” the Model adds a new task.

fantastic explanation here:

https://www.codecademy.com/articles/mvc

https://www.codecademy.com/articles/mvc

Comments


bottom of page