随笔分类 - 框架
摘要:基础 https://www.cnblogs.com/knighterrant/p/10562071.html https://blog.csdn.net/l_vip/article/details/79156113 https://www.cnblogs.com/jingxuan-li/p/951
阅读全文
摘要:uswgi学习文档 http://uwsgi-docs-cn.readthedocs.io/zh_CN/latest/WSGIquickstart.html WSGI是什么? WSGI,全称 Web Server Gateway Interface,或者 Python Web Server Gate
阅读全文
摘要:https://www.cnblogs.com/maple-shaw/articles/9502602.html
阅读全文
摘要:Session和Cookie的区别与联系 一. 概念理解 你可能有留意到当你浏览网页时,会有一些推送消息,大多数是你最近留意过的同类东西,比如你想买桌子,上淘宝搜了一下,结果连着几天会有各种各样的桌子的链接。这是因为 你浏览某个网页的时候,WEB 服务器会先送一些资料放在你的计算机上,类似于你打的文
阅读全文
摘要:创建表 # models.py form django.db import models class Book(models.Model): # 表名book,django会自动使用项目名+我们定义的表名 # 如没有自定义主键,django会自动添加一个主键,字段名id 自增 name = mode
阅读全文
摘要:## 内容回顾 #### 1.所有的命令 ##### 下载安装 pip install django==1.11.20 - i 源 ##### 创建项目 django-admin startproject 项目名 ##### 启动项目 python manage.py runserver
阅读全文