随笔分类 - 编程语言 / django
摘要:第一章 <html> <!--解释器--> <!DOCTYPE html> <head> <!--字符集--> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <!--刷新跳转--> <meta http-equ
阅读全文
摘要:安装django docker run --net=host -it -v /home/django/code:/home/django python bash pip install django # python -m django --version 4.0.2 生成项目目录 # django
阅读全文
摘要:简单的后台管理 1登录注册 2 老师 班级 学员 insert update delete 1.设计表结构 # 班级表 class CLASS(models.Model): caption = models.CharField(max_length=32) # 学生表 class STUDENT(m
阅读全文