Try   HackMD

【Django】CH0-前言

MTV模式

Django 是 MTV 模式為架構,Model、Template、View,作用方式如圖:

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

  1. User 透過 Browser 發出 request
  2. Django 依照 Urls 到指定 的 View
  3. View 透過 Models(ORM) 到 DB 取資料;
  4. 資料再回傳至 Models - View - Template(可選) - Browser,完成一系列動作。