Django
python三大框架之一
Bruce-li__
这个作者很懒,什么都没留下…
展开
-
Django3.2的ORM增删改查
14.数据库操作MySQL数据库+pymysqlimport pymysql# 1.连接MySQLconn=pymysql.connect(host='127.0.0.1',port=3306,user='root',passwd='root123',charset='utf-8',db='unicom')cursor=conn.cursor(cursor=pymysql.cursors.DictCursor)# 2.发送指令cursor.execute("insert into adm原创 2022-05-03 07:30:00 · 371 阅读 · 0 评论 -
Django3.2连接Mysql
django3.2连接mysql原创 2022-05-02 12:30:22 · 443 阅读 · 0 评论 -
Django3.2基础
1.创建虚拟环境python -m venv venv2.安装django3.2pip install django==3.23.创建项目django-admin startproject mysite4.APP概念-项目--app 用户管理(表结构,函数,HTML模板,css)--app 订单管理(表结构,函数,HTML模板,css)--app 后台管理(表结构,函数,HTML模板,css)--app 网站(表结构,函数,HTML模板,css)--app API(表结构,函数原创 2022-05-01 22:36:19 · 909 阅读 · 0 评论 -
Django运行项目卡住了没有反应Watching for file changes with StatReloader Performing system checks... System che
django运行卡在这里Watching for file changes with StatReloaderPerforming system checks…System check identified no issues (0 silenced).前一天运行还好好的,今天就不行了,我的settings.py刚好换了新的数据库,没有更改ip,就卡在这里,改完之后就能运行了...原创 2022-01-07 16:28:00 · 3950 阅读 · 1 评论 -
Django学习之路(一)--初识django
django 2.2原创 2022-01-07 14:27:46 · 1146 阅读 · 0 评论