quartz/content/notes/model-view-controller-pattern.md
Jet Hughes eec8badee0 update
2022-04-28 11:51:17 +12:00

377 B

title aliases tags
model-view-controller-pattern MVC
pattern

Model: An object carrying data

  • handles data logiv
  • interacts with database

View: The visualisation of the data that model contains

  • rendered dynamically

Controller: Controls the data flow into model object and updates the view whenever data changes. Keeps view and model separate.