- Django Design Patterns and Best Practices
- Arun Ravindran
- 299字
- 2021-06-25 21:32:00
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:
- The browser sends the request (essentially, a string of bytes) to your web server.
- 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.
- 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.
- 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.
- 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
- The HttpResponse object gets rendered into a string, as it leaves the Django application.
- 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.
- 新編Visual Basic程序設計上機實驗教程
- 微服務設計(第2版)
- Implementing Modern DevOps
- Learning ROS for Robotics Programming(Second Edition)
- Ceph Cookbook
- MySQL數據庫管理與開發(慕課版)
- Java性能權威指南(第2版)
- AutoCAD VBA參數化繪圖程序開發與實戰編碼
- Learning SciPy for Numerical and Scientific Computing(Second Edition)
- JavaScript程序設計(第2版)
- 計算機應用基礎項目化教程
- Learning VMware vSphere
- SQL Server 2008中文版項目教程(第3版)
- MyBatis 3源碼深度解析
- Python硬件編程實戰