Django4.2 学习 - 综合练习(六)
1. 练习需求
创建一个项目,来说明出版社,书籍和作者的关系。
假定关系:
- 作者:书籍 -> 1:n (一本书可以由一个作者完成, 一个作者可以创作多本书)
- 出版社:书籍 -> n: n (一个出版社可以出版多本书, 一本书可以由多个出版社出版)
models
直接给出如下:
1 | class Author(models.Model): |
- 在书籍的 book_index.html 中有一个 “查看所有书籍” 的超链接按钮,点击进入书籍列表 book_list.html 页面。
- 在书籍的 book_list.html 中显示所有书名,点击书名可以进入书籍详情 book_detail.html (通过书籍 id)。
- 在书籍 book_detail.html 中可以点击概述的作者和出版社,进入作者的 author_detail.html 和出版社详情的 publisher_detail.html 页面。
- 需要分别建立三个应用 book、author、publisher。
- 使用系统自带的后台管理系统,给数据库添加书籍、作者、出版社的数据,注意顺序。
- 在 Templates 中新建 book、author、publisher 文件夹,分类将不同的 html 页面放进去。
- 写路由时,使用带命名空间的根路由、子路由 的方式,写完可以先启动下,检查各个页面是否可以访问。
- 在 author_detail.html 查询该作者都出版了哪些书,并且里面的书籍也可以跳转到书籍详情页。
- 在 publisher_detail.html 查询该出版社都出版了哪些书,并且里面的书籍也可以跳转到书籍详情页。
2. 主要代码
DjangoPro9/settings.py
1 | # ...... |
DjangoPro9/urls.py
1 | # 主路由 |
author
相关
1 | author/ |
author/admin.py
1 | from django.contrib import admin |
author/models.py
1 | from django.db import models |
author/urls.py
1 | from django.contrib import admin |
author/views.py
1 | from django.shortcuts import render |
book
相关
1 | book/ |
book/admin.py
1 | from django.contrib import admin |
book/models.py
1 | from django.db import models |
book/urls.py
1 | from django.urls import path |
book/views.py
1 | from django.shortcuts import render |
publisher
相关
1 | publisher/ |
publisher/admin.py
1 | from django.contrib import admin |
publisher/models.py
1 | from django.db import models |
publisher/urls.py
1 | from django.contrib import admin |
publisher/views.py
1 | from django.shortcuts import render |
html 相关
1 | templates/ |
templates/author_detail.html
1 |
|
templates/book_detail.html
1 |
|
templates/book_index.html
1 |
|
templates/book_list.html
1 |
|
templates/publisher_detail.html
1 |
|