20170901 MTV and MVC patterns

Source: Internet
Author: User

20170901 MTV and MVC patterns

Two MVC and MTV modeundefined

The famous MVC pattern: the so-called MVC is to divide Web applications into models (M), controllers (C), view (V) Three layers, and they are connected together in a plug-in, loosely coupled way.

The model is responsible for the business object with the database object (ORM), the view is responsible for interacting with the user (page), the controller (C) accepts the user's input call model and the view completes the user's request.

The Django MTV model is essentially no different from the MVC pattern, and it's just a little different from the definition of each component in order to remain loosely coupled, as Django's MTV represents:

Model: Object that is responsible for business objects and databases (ORM)

Template (Template): Responsible for how to display the page to the user

View: Responsible for business logic, and call model and template when appropriate

In addition, Django has a URL dispatcher that distributes page requests for URLs to different view processes, and then calls the corresponding model and template

20170901 MTV and MVC patterns

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.