官术网_书友最值得收藏!

How does Django work?

To truly appreciate Django, you will need to peek under the hood and see the various moving parts inside. This can be both enlightening and overwhelming. If you are already familiar with the following information, you might want to skip this section:

How web requests are processed in a typical Django application

The preceding diagram shows the simplified journey of a web request from a visitor's browser to your Django application and back. The numbered paths are as follows:

  1. The browser sends the request (essentially, a string of bytes) to your web server.
  2. Your web server (say, Nginx) hands over the request to a Web Server Gateway Interface (WSGI) server (say, uWSGI) or directly serves a file (say, a CSS file) from the filesystem.
  3. Unlike a web server, WSGI servers can run Python applications. The request populates a Python dictionary called environ and, optionally, passes through several layers of middleware, ultimately reaching your Django application.
  4. URLconf (URL configuration) module contained in the urls.py of your project selects a view to handle the request based on the requested URL. The request has turned into HttpRequest, a Python object.
  1. The selected view typically does one or more of the following things:

a. Talks to a database via the models

b. Renders HTML or any other formatted response using templates

c. Returns a plain text response (not shown)

d. Raises an exception

  1. The HttpResponse object gets rendered into a string, as it leaves the Django application.
  2. A beautifully rendered web page is seen in your user's browser.

Though certain details are omitted, this representation should help you appreciate Django's high-level architecture. It also shows the roles played by the key components, such as models, views, and templates. Many of Django's components are based on several well-known design patterns.

主站蜘蛛池模板: 灵武市| 富阳市| 定南县| 大埔县| 仁怀市| 长宁县| 泸水县| 灵台县| 崇阳县| 汝南县| 郧西县| 海门市| 西丰县| 灵武市| 盐池县| 浦县| 黔江区| 怀远县| 和顺县| 乐东| 巴塘县| 犍为县| 磐安县| 章丘市| 武川县| 老河口市| 芜湖县| 永川市| 辽宁省| 屏山县| 读书| 潢川县| 镇雄县| 巨鹿县| 石门县| 忻城县| 南郑县| 石台县| 泾源县| 阿瓦提县| 太仓市|