TIL-211221

EBinY·2021년 12월 21일
0

TIL - Today I Learned

목록 보기
24/54

MVC design pattern

  • what is MVC
    • Model View Controller
    • SW Architecture Design Pattern
    • separates application functionalities
    • promotes organized programming
    1. Model
      • knowledge
      • handles data
      • interaction with Database
    2. View
      • visual representation of a model
      • what the users see(UI)
    3. Controller
      - receives input
      - process requests
      - get data from a model
      - pass data to the view

0개의 댓글