时间:2023-06-11 14:18:01 | 来源:网站运营
时间:2023-06-11 14:18:01 来源:网站运营
Python Web开发29-django 模板-模板继承:因篇幅太多了,往期整理的28篇资料在最后哦
{%block 名称%}预留区域,可以编写默认内容,也可以没有默认内容{%endblock 名称%}
{% extends "父模板名称"%}
{%block 名称%}实际填充内容{{block.super}}用于获取父模板中block的内容{%endblock 名称%}
def jicheng(request): context={'title':'继承','list':BookInfo.objects.all()} return render(request,'booktest/jicheng.html',context)
url(r'^jicheng/$', views.jicheng),
<html><head> <title>{{title}}</title></head><body><h2>这是头</h2><hr>{%block qu1%}这是区域一,有默认值{%endblock qu1%}<hr>{%block qu2%}{%endblock qu2%}<hr><h2>这是尾</h2></body></html>
{%extends 'jicheng_base.html'%}{%block qu2%}<ul> {%for book in list%} <li>{{book.btitle}}</li> {%endfor%}</ul>{%endblock qu2%}
http://127.0.0.1:8000/jicheng/
01-四喜Clion:Python Web开发-django搭建环境
02-四喜Clion:Python Web开发02-django创建图书管理项目
03-四喜Clion:Python Web开发03-django模型设计
04-四喜Clion:Python Web开发04-django后台管理
05-四喜Clion:Python Web开发05-django视图
06-四喜Clion:Python Web开发06-django模板
07-四喜Clion:Python Web开发07-django项目完成
08-四喜Clion:Python Web开发08-django ORM简介
09-四喜Clion:Python Web开发09-django ORM-定义模型类
10-四喜Clion:Python Web开发10-django ORM-模型成员
11-四喜Clion:Python Web开发11-django ORM-查询集
12-四喜Clion:Python Web开发12-django ORM-条件查询
13-四喜Clion:Python Web开发13-django ORM-关联的查询
14-四喜Clion:Python Web开发14-django 视图
15-四喜Clion:Python Web开发15-django 视图-URLconf
16-四喜Clion:Python Web开发16-django 视图-内置错误视图
17-四喜Clion:Python Web开发17-django 视图-HttpReqeust对象
18-四喜Clion:Python Web开发18-django 视图-QueryDict对象、GET属性、POST属性
19-四喜Clion:Python Web开发19-django 视图HttpResponse对象
20-四喜Clion:Python Web开发20-django 视图 子类JsonResponse
21-四喜Clion:Python Web开发21-django 视图 子类HttpResponseRedirect
22-四喜Clion:Python Web开发22-django 视图-状态保持
23-四喜Clion:Python Web开发23-django 模板
24-四喜Clion:Python Web开发24-django 模板语言-变量
25-四喜Clion:Python Web开发25-django 模板语言-标签
26-四喜Clion:Python Web开发26-django 模板语言-过滤器
27-四喜Clion:Python Web开发27-django 模板语言-自定义过滤器
28-四喜Clion:Python Web开发28-django 模板语言-注释
关键词:模板,继承