Django 8 通用视图基础

1. 什么是通用视图 

1. 在terminal 输入 django-admin startapp the_12回车

2. tutorial\settings.py 注册 

INSTALLED_APPS = ['django.contrib.admin','django.contrib.auth','django.contrib.contenttypes','django.contrib.sessions','django.contrib.messages','django.contrib.staticfiles',"the_3","the_5","the_6","the_7","the_8","the_9","the_10","the_12",
]

3.  tutorial\urls.py

urlpatterns = [path('admin/', admin.site.urls),path('the_3/', include('the_3.urls')),path('the_4/', include('the_4.urls')),path('the_5/', include('the_5.urls')),path('the_7/', include('the_7.urls')),path('the_10/', include('the_10.urls')),path('the_12/', include('the_12.urls')),
]

4. the_12\views.py

from django.http import JsonResponse
from django.shortcuts import render
from django.views import View# Create your views here.class Chello(View):def get(self,request):return JsonResponse({"python": '这是一个get方法'})def post(self,request):return JsonResponse({"python": '这是一个post方法'})

5. the_12\urls.py 

from django.urls import path
from .views import Chellourlpatterns = [path('index/', Chello.as_view()),
]

6. 运行tutorial, 点击http://127.0.0.1:8000/,地址栏 127.0.0.1:8000/the_12/index/ 刷新 

 

7. 回到the_12\urls.py, 看as_view的源码(ctrl + 点鼠标左键)

2.使用通用视图的tips

  • 提供了什么功能
  • 数据从哪里来
  • 提供了哪些模板变量
  • 渲染的模板页

3.ListView 的使用 

  • 如何自定义获取到的列表对象的名字
  • 如何确定渲染的模板名字
  • 如何分页展示

1. the_12\models.py 

from django.db import models# Create your models here.class SomeThing(models.Model):msg = models.CharField(max_length=200)is_delete = models.BooleanField()

2. 迁移, terminal 输入 python .\manage.py makemigrations回车

Migrations for 'the_12':
  the_12\migrations\0001_initial.py
    - Create model SomeThing

3. terminal 输入 python .\manage.py migrate回车 

Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sessions, the_10, the_12, the_6, the_8, the_9
Running migrations:
  Applying the_12.0001_initial... OK

4. the_12\admin.py 

from django.contrib import admin
from the_12.models import SomeThing# Register your models here.admin.site.register(SomeThing)

5. 浏览器 http://127.0.0.1:8000/admin在SomeThing添加5条数据 

6. the_12\views.py 添加以下代码

class MyListView(ListView):pass

7. the_12\urls.py 

from django.urls import path
from .views import Chello,MyListViewurlpatterns = [path('index/', Chello.as_view()),# path 的第二个参数应该是一个函数,as_view就是把Chello这个类变成函数path('mylist/', MyListView.as_view()),
]

8. 浏览器 ImproperlyConfigured at /the_12/mylist/

9. the_12\views.py 

from django.http import JsonResponse
from django.shortcuts import render
from django.views import View
from django.views.generic import ListView
from .models import SomeThing# Create your views here.class Chello(View):def get(self,request):return JsonResponse({"python": '这是一个get方法'})def post(self,request):return JsonResponse({"python": '这是一个post方法'})class MyListView(ListView):model = SomeThing

10. 刷新网页 

11. 在templates创建the_12文件夹,再在新创建的the_12文件夹内创建一个something_list。html

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><h1>这是something_list的页面</h1>
</body>
</html>

12. 刷新网页 

13. templates\the_12\something_list.html 

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><h1>这是something_list的页面</h1><ul>{% for i in object_list %}<li>{{ i.msg }}</li>{% endfor %}</ul>
</body>
</html>

14. 刷新网页 

15. 总结 

"""
提供了什么功能以列表的形式展示数据的功能
数据从哪里来数据从数据库中查询得来的modelquerysetget_queryset
提供了哪些模板变量object_list自定义 : context_object_namesomething_list
渲染的模板页默认模型名的小写_list.html自定义:template_name
"""

the_12\views.py 

from django.http import JsonResponse
from django.shortcuts import render
from django.views import View
from django.views.generic import ListView
from .models import SomeThing# Create your views here.class Chello(View):def get(self,request):return JsonResponse({"python": '这是一个get方法'})def post(self,request):return JsonResponse({"python": '这是一个post方法'})class MyListView(ListView):# model = SomeThing# queryset = SomeThing.objects.all()def get_queryset(self):queryset = SomeThing.objects.filter(is_delete=0)return querysetcontext_object_name = 'panda'template_name = 'the_12/huahua.html'

templates\the_12\something_list.html 

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><h1>这是something_list的页面</h1><ul>{% for i in object_list %}<li>{{ i.msg }}</li>{% endfor %}</ul>
</body>
</html>

templates\the_12\huahua.html 

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><h1>这是huahua的页面</h1><ul>{% for i in object_list %}<li>{{ i.msg }}</li>{% endfor %}</ul>
</body>
</html>

16. 分页操作 , the_12\views.py

class MyListView(ListView):paginate_by = 2

templates\the_12\huahua.html 

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
</head>
<body><h1>这是huahua的页面</h1><ul>{% for i in object_list %}<li>{{ i.msg }}</li>{% endfor %}</ul>{% for page in paginator %}<a href="">{{ page.number }}</a>{% endfor %}
</body>
</html>

刷新网页 

17. the_12\urls.py, 做以下更改 

path('mylist/', MyListView.as_view(),name='something')

18. templates\the_12\huahua.html 

{% for page in paginator %}<a href="{% url 'something' %}">{{ page.number }}</a>{% endfor %}

相当于 templates\the_12\huahua.html

{% for page in paginator %}<a href="{% url 'something' %}?page={{ page.number }}">{{ page.number }}</a>
{% endfor %}

19. 源码分析 

class MyListView(ListView):
class ListView(MultipleObjectTemplateResponseMixin, BaseListView):
class MultipleObjectTemplateResponseMixin(TemplateResponseMixin):

        the_12/something_list.html

        自定义了模板名,供程序使用

class TemplateResponseMixin:  

        主要的作用是找到模板的名字,然后渲染上下文数据

class BaseListView(MultipleObjectMixin, View):

        重写了get方法

class MultipleObjectMixin(ContextMixin):    
        queryset = Nonemodel = Nonepaginate_by = Nonepaginate_orphans = 0context_object_name = None

4.常见通用视图可自定义属性

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/597330.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

链接器--动态链接器--延迟绑定与动态链接器是什么?学习笔记二

内容在下面链接&#xff08;通过新建标签页打开&#xff09;&#xff1a; 链接器--动态链接器--延迟绑定与动态链接器是什么&#xff1f;学习笔记二一个例子来看延迟加载https://mp.weixin.qq.com/s?__bizMzkyNzYzMjMzNA&mid2247483713&idx1&snee90a5a7d59872287…

C++知识切片①:运算符重载之前置递增和后置递增

文章目录 前置递增的实现1.先写好main函数及头文件2.自定义MyInteger类3.重定义cout4.在类内实现前置递增 后置递增的实现完整代码 在进行运算符重载之前&#xff0c;不妨先看看常规的前置递增和后置递增的区别&#xff1a; 前置递增如a所示&#xff0c;a是先进行递增计算&…

人工智能大模型:定义、发展和应用

⭐简单说两句⭐ ✨ 正在努力的小新~ &#x1f496; 超级爱分享&#xff0c;分享各种有趣干货&#xff01; &#x1f469;‍&#x1f4bb; 提供&#xff1a;模拟面试 | 简历诊断 | 独家简历模板 &#x1f308; 感谢关注&#xff0c;关注了你就是我的超级粉丝啦&#xff01; &…

k8s中的容器探针

pod的容器健康检查---探针 probe&#xff1a;k8s对容器执行的定期检查&#xff0c;诊断。 探针的三种规则 所有的探针都是针对容器不是针对pod 1、 存活探针---livenessProbe&#xff1a;探测容器是否正常运行。如果发现探测失败&#xff0c;会杀掉容器。容器会根据重启策略…

B端产品经理学习-对用户进行需求挖掘

目录&#xff1a; 用户需求挖掘的方法 举例&#xff1a;汽车销售系统的用户访谈-前期准备 用户调研提纲 预约用户做访谈 用户访谈注意点 我们对于干系人做完调研之后需要对用户进行调研&#xff1b;在C端产品常见的用户调研方式外&#xff0c;对B端产品仍然适用的 用户需…

顺序表——习题

1. 轮转数组 代码实现&#xff1a; // 逆置数组 void nizhi_array(int *nums, int l, int r) { // 左闭右闭if (l > r) {return ;}for (int i l, j r; i < j; i, j--) {int temp nums[i];nums[i] nums[j];nums[j] temp;} }void rotate(int *nums, int numsSize, int…

Arduino驱动AS3935数字闪电传感器(闪电传感器)

目录 1、传感器特性 2、硬件原理图 3、控制器和传感器连线图 4、驱动程序 闪电传感器采用AMS独具创新的AS3935数字闪电传感芯片与Coilcraft

如何将Git的语言设置为中文

[rootiZ2zecg225xwld6g5g]# git pull Ya est actualizado. 问题描述&#xff1a; 如图所示&#xff0c;配置完git后&#xff0c;当每次拉取代码时发现提示语为西班牙语&#xff0c;想改为默认中文&#xff0c;尝试了很多次都失败了&#xff0c;最后发现是系统环境变量的问题。…

arguments arguments的认识 将arguments伪数组转为真数组

概述 arguments为伪数组&#xff0c;伪书组就是不能使用数组的方法 arguments这个值等于函数括号内的参数&#xff0c;以伪数组的方式体现 function ff(a,b,c){console.log(参数是,arguments); } ff(1,2,3)//结果&#xff1a;参数是&#xff0c;[1,2,3] 将arguments伪数组转为…

C语言中关于strcpy函数的理解

strcpy的功能是将源指向的字符串复制到另外一个字符串中 目标指向的数组的大小应该要足够长&#xff0c;避免让源字符串中的数据溢出 关于这个函数的具体用法&#xff0c;我们可以看看下面这个程序 注意&#xff1a;strcpy函数的头文件是<string.h>&#xff0c;我们在用…

Arduino开发实例-EMG 肌肉信号传感器

EMG 肌肉信号传感器 文章目录 EMG 肌肉信号传感器1、EMG 肌肉信号传感器介绍2、硬件准备及接线3、代码实现1、EMG 肌肉信号传感器介绍 在医学研究中,测量肌肉的活动、收缩和扩张非常重要。 EMG 肌肉传感器测量肌肉活动并产生信号以显示扩张和收缩量。 因此,输出取决于所选肌…

JavaWeb——后端之maven

三、后端Web开发 1. Maven 1.1 概念 概念&#xff1a; 一款用于管理和构建java项目的工具&#xff0c;是apache下的一个开源项目 作用&#xff1a; 依赖管理&#xff1a;jar包&#xff0c;避免版本冲突问题——不用手动导jar包&#xff0c;只需要在配置文件&#xff08;pom…

Docker项目:搭建服务器监控面板

搭建一个专属自己的网站监控——Uptime Kuma 安装Docker下载docker&#xff0c;docker官方网址docker.com 创建yml配置文件 vim docker-compose.yml代码 version: 3.3services:uptime-kuma:image: louislam/uptime-kumacontainer_name: uptime-kumavolumes:- ./uptime-kuma:/…

【数据库原理】(8)关系数据库的关系代数

关系数据语言可以分为三类: 关系代数、关系演算和介于关系代数与关系演算之间的语言 SQL。 下面专门讲述用对关系进行运算来表达查询要求的关系代数。关系代数的运算对象是关系&#xff0c;运算结果也是关系。关系代数用到的运算符包括四类:集合运算符、专门的关系运算符、算术…

若依项目(ruoy-vue)多模块依赖情况简要分析

主pom文件关键点分析 properties标签声明变量信息&#xff1a;版本号、编码类型、java版本spring-boot依赖形式&#xff1a;spring-boot-dependencies、pom、importdependencies中添加本项目内部模块&#xff0c;同时在modules中声明模块packaging打包选择pom设置打包maven-co…

VMware Workstation虚拟机CentOS 7.9 配置固定ip的步骤

VMware Workstation虚拟机CentOS7.9配置固定ip的步骤 编辑虚拟机 打开VMware Workstation。 选择要配置的虚拟机&#xff0c;但不要启动它。 点击“编辑虚拟机设置”&#xff08;Edit virtual machine settings&#xff09;。 选择“网络适配器”&#xff08;Network Adapter&…

Java-数据类型-FAQ-数据类型转换

1 需求 需求1&#xff1a;整型转字符串 需求2&#xff1a;整型转ASCII 2 接口 3 示例&#xff1a;整型转字符串 Integer.toString()String.valueOf() public class Test {public static void main(String[] args) {int i 99;System.out.println(Integer.toString(i) insta…

win11电脑图形卡不支持或已禁用硬件加速怎么解决,N卡GPU看不到cuda进程怎么办

摘要 亲&#xff0c;很高兴为你解答。win11电脑图形卡不支持或已禁用硬件加速解决方法&#xff1a;1、点击任务栏上的开始图标&#xff0c;在打开的菜单中&#xff0c;点击设置&#xff0c;&#xff08;快捷键WINX&#xff0c;点击设置&#xff09;。2、Windows系统 设置窗口&a…

找不到vcruntime140.dll怎么处理?6个修复教程分享

本文将详细介绍vcruntime140.dll文件的相关内容&#xff0c;并提供6个不同的修复教程&#xff0c;帮助大家解决这一问题。 一、vcruntime140.dll是什么文件&#xff1f; vcruntime140.dll是Visual C Redistributable Packages的一部分&#xff0c;它是Microsoft Visual Studi…

C# 2中的一些小特性

一、局部类型 在C#当中有这样一个关键字partial 用来声明类&#xff0c;结构&#xff0c;接口分为多个部分来声明。使用场景可以一部分类中写实例方法&#xff0c;一部分写属性&#xff0c;我在实际工作测试中就是将属性与实际方法是分开的。相互之间的成员互相通用。 举个例子…