Django does support the Model-View-Controller (MVC) architectural pattern. However, Django uses a slightly different approach called Model-View-Template (MVT) that separates the logic into the model (data), view (presentation), and template (user interface). The model defines the data schema, the view handles the data processing logic, and the template displays the final output to the user.
这里的view对应的controller
这里的template对应的view
标签:11,03,logic,Django,template,2023,data,view From: https://www.cnblogs.com/chucklu/p/17205430.html