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

16 lines
377 B
Markdown

---
title: "model-view-controller-pattern"
aliases: MVC
tags:
- 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.