随笔分类 - Python基础
摘要:1 创建表 1.1 Meta 源信息 from django.db import models class UserInfo(models.Model): username = models.CharField(max_length=32) password = models.CharField(m
阅读全文
摘要:1 web项目工作流程 1.1 了解web程序工作流程 1.2 django生命周期 HTTP uwsgi uwsgi WSGI 浏览器 > Nginx > uWSGI > PythonWSGImodule > Python application (web服务器)(web服务器)(web服务器)
阅读全文