django-admin startproject 项目名称
cd 项目名称
python manage.py startapp 应用名称
from django.db import models # Create your models here. class BookInfo(models.Model): """图书模型类""" # 图书名称 btitle = models.CharField(max_length=20) # 出版日期 bpub_date = models.DateField() # 阅读量 bread = models.IntegerField(default=0) # 评论量 bcomment = models.IntegerField(default=0) # 删除状态 False默认不删除 is_delete = models.BooleanField(default=False) class HeroInfo(models.Model): """英雄人物模型类""" # 名字 hname = models.CharField(max_length=20) # 性别 hgender = models.BooleanField(default=False) # 备注 hcomment = models.CharField(max_length=200) # 关系属性 hbook = models.ForeignKey('BookInfo') # 删除状态 False默认不删除 is_delete = models.BooleanField(default=False)
在settings.py中 INSTALLED_APPS中添加应用名称
ForeignKey必须添加on_delete
models.ForeignKey('BookInfo',on_delete=models.DO_NOTHING)
否则报如下错误
生成迁移文件
python manage.py makemigrations
迁移文件生成成功
配置 settings.py 的 DATABASES
python manage.py migrate
insert into app_01_bookinfo(btitle, bpub_date, bread, bcomment, is_delete) values ('射雕英雄传', '1998-5-1', 12, 34, 0), ('天龙八部', '1989-9-2', 34, 2, 0), ('雪山飞狐', '1997-5-1', 32, 43, 0); insert into app_01_heroinfo(hname, hgender, hbook_id, hcomment, is_delete) values ('郭婧', 1, 1, '降龙十八掌', 0), ('黄蓉', 0, 1, '打狗棍法', 0), ('黄药师', 1, 1, '弹指神通', 0), ('欧阳锋', 1, 1, '给蟆功', 0), ('梅超风', 0, 1, '九阴白骨爪', 0), ('乔峰', 1, 2, '降龙十八掌', 0), ('段誉', 1, 2, '六脉神剑', 0), ('理竹', 1, 2, '天山六困签', 0), ('王语嫣', 0, 2, '神仙姐姐', 0), ('令狐冲', 1, 3, '独孤九剑', 0), ('任盈盈', 0, 3, '弹琴', 0), ('岳不群', 1, 3, '华山剑法', 0), ('东方不败', 0, 3, '葵花宝典', 0), ('胡要', 1, 4, '胡家刀法', 0), ('苗若兰', 0, 4, '黄衣', 0), ('程灵素', 0, 4, '医术', 0), ('袋紫衣', 0, 4, '六合拳', 0);
配置模板目录
from django.contrib import admin from django.urls import path, re_path, include urlpatterns = [ path('admin/', admin.site.urls), # 包含app_01应用的 urls 文件 re_path(r'^', include('app_01.urls')), ]
from django.urls import path, re_path from app_01 import views urlpatterns = [ re_path(r'^index$', views.index), # 图书信息页面 path(r'create', views.create), # 新增 re_path(r'^delete(\d+)$', views.delete), # 删除点击的元素 ]正则
()
表示要传递的参数注:使用HttpResponseRedirect 可将页面重定向到指定页面(保持页不动实现增加和删除功能)
from django.shortcuts import render from app_01.models import BookInfo from datetime import date from django.http import HttpResponse, JsonResponse, HttpResponseRedirect # Create your views here. def index(request): """显示图书信息""" # 1.查询所有图书信息 books = BookInfo.objects.all() # 2.使用模板 return render(request, 'app_01/index.html', {'books': books}) def create(request): """新增""" # 1.创建 BookInfo对象 b = BookInfo() b.btitle = '流星蝴蝶剑' b.bpub_date = date(1999, 1, 25) # 保存到数据库 b.save() # 返回应答 # return HttpResponse('ok') # 返回应答,重定向。 return HttpResponseRedirect('/index') def delete(request, bid): """删除点击的元素""" # 1.通过 bid 查询元素 book = BookInfo.objects.get(id=bid) # 2.删除 book.delete() # 3.重定向页面 # return HttpResponseRedirect('/index') # 简写 return redirect('/index')
redirect
和 HttpResponseRedirect
效果相同,redirect
本质就是返回了 HttpResponseRedirect
对象
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>图书信息</title> </head> <body> <a href="/create">新增</a> <ul> {% for book in books %} <li>{{book.btitle}} -- <a href="/delete{{book.id}}">删除</a> </li> {%endfor%} </ul> </body> </html>