Paginator Django 分页 When QuerySets are evaluated QuerySets 执行原理 QuerySets are lazy 惰性执行 访问db取数据的时机
https://docs.djangoproject.com/en/2.2/topics/pagination/
Paginator objects¶
The Paginator class has this constructor:
Required arguments¶
object_list-
A list, tuple,
QuerySet, or other sliceable object with acount()or__len__()method. For consistent pagination,QuerySets should be ordered, e.g. with anorder_by()clause or with a defaultorderingon the model.Performance issues paginating large
QuerySetsIf you’re using a
QuerySetwith a very large number of items, requesting high page numbers might be slow on some databases, because the resultingLIMIT/OFFSETquery needs to count the number ofOFFSETrecords which takes longer as the page number gets higher. per_page- The maximum number of items to include on a page, not including orphans (see the
orphansoptional argument below).
Optional arguments¶
orphans- Use this when you don’t want to have a last page with very few items. If the last page would normally have a number of items less than or equal to
orphans, then those items will be added to the previous page (which becomes the last page) instead of leaving the items on a page by themselves. For example, with 23 items,per_page=10, andorphans=3, there will be two pages; the first page with 10 items and the second (and last) page with 13 items.orphansdefaults to zero, which means pages are never combined and the last page may have one item. allow_empty_first_page- Whether or not the first page is allowed to be empty. If
Falseandobject_listis empty, then anEmptyPageerror will be raised.
Methods¶
Paginator.get_page(number)[source]¶-
Returns a
Pageobject with the given 1-based index, while also handling out of range and invalid page numbers.If the page isn’t a number, it returns the first page. If the page number is negative or greater than the number of pages, it returns the last page.
It raises an exception (
EmptyPage) only if you specifyPaginator(..., allow_empty_first_page=False)and theobject_listis empty.
Paginator.page(number)[source]¶-
Returns a
Pageobject with the given 1-based index. RaisesInvalidPageif the given page number doesn’t exist.
Attributes¶
Paginator.count¶-
The total number of objects, across all pages.
Note
When determining the number of objects contained in
object_list,Paginatorwill first try callingobject_list.count(). Ifobject_listhas nocount()method, thenPaginatorwill fallback to usinglen(object_list). This allows objects, such as Django’sQuerySet, to use a more efficientcount()method when available.
Paginator.num_pages¶-
The total number of pages.
Paginator.page_range¶-
A 1-based range iterator of page numbers, e.g. yielding
[1, 2, 3, 4].
InvalidPage exceptions¶
- exception
InvalidPage[source]¶ -
A base class for exceptions raised when a paginator is passed an invalid page number.
The Paginator.page() method raises an exception if the requested page is invalid (i.e., not an integer) or contains no objects. Generally, it’s enough to catch the InvalidPage exception, but if you’d like more granularity, you can catch either of the following exceptions:
- exception
EmptyPage[source]¶ -
Raised when
page()is given a valid value but no objects exist on that page.
Both of the exceptions are subclasses of InvalidPage, so you can handle them both with a simple except InvalidPage.
Page objects¶
You usually won’t construct Page objects by hand – you’ll get them using Paginator.page().
- class
Page(object_list, number, paginator)[source]¶ -
A page acts like a sequence of
Page.object_listwhen usinglen()or iterating it directly.
Methods¶
Page.next_page_number()[source]¶-
Returns the next page number. Raises
InvalidPageif next page doesn’t exist.
Page.previous_page_number()[source]¶-
Returns the previous page number. Raises
InvalidPageif previous page doesn’t exist.
Page.start_index()[source]¶-
Returns the 1-based index of the first object on the page, relative to all of the objects in the paginator’s list. For example, when paginating a list of 5 objects with 2 objects per page, the second page’s
start_index()would return3.
Page.end_index()[source]¶-
Returns the 1-based index of the last object on the page, relative to all of the objects in the paginator’s list. For example, when paginating a list of 5 objects with 2 objects per page, the second page’s
end_index()would return4.
Attributes¶
Page.object_list¶-
The list of objects on this page.
Page.number¶-
The 1-based page number for this page.
Page.paginator¶-
The associated
Paginatorobject.https://docs.djangoproject.com/en/2.2/ref/models/querysets/
https://docs.djangoproject.com/en/2.2/topics/db/queries/#querysets-are-lazy
QuerySets are lazy¶QuerySetsare lazy – the act of creating aQuerySetdoesn’t involve any database activity. You can stack filters together all day long, and Django won’t actually run the query until theQuerySetis evaluated. Take a look at this example:>>> q = Entry.objects.filter(headline__startswith="What")
>>> q = q.filter(pub_date__lte=datetime.date.today())
>>> q = q.exclude(body_text__icontains="food")
>>> print(q)Though this looks like three database hits, in fact it hits the database only once, at the last line (
print(q)). In general, the results of aQuerySetaren’t fetched from the database until you “ask” for them. When you do, theQuerySetis evaluated by accessing the database. For more details on exactly when evaluation takes place, see When QuerySets are evaluated.When
QuerySets are evaluated¶Internally, a
QuerySetcan be constructed, filtered, sliced, and generally passed around without actually hitting the database. No database activity actually occurs until you do something to evaluate the queryset.You can evaluate a
QuerySetin the following ways:Iteration. A
QuerySetis iterable, and it executes its database query the first time you iterate over it. For example, this will print the headline of all entries in the database:for e in Entry.objects.all():
print(e.headline)Note: Don’t use this if all you want to do is determine if at least one result exists. It’s more efficient to use
exists().Slicing. As explained in Limiting QuerySets, a
QuerySetcan be sliced, using Python’s array-slicing syntax. Slicing an unevaluatedQuerySetusually returns another unevaluatedQuerySet, but Django will execute the database query if you use the “step” parameter of slice syntax, and will return a list. Slicing aQuerySetthat has been evaluated also returns a list.Also note that even though slicing an unevaluated
QuerySetreturns another unevaluatedQuerySet, modifying it further (e.g., adding more filters, or modifying ordering) is not allowed, since that does not translate well into SQL and it would not have a clear meaning either.Pickling/Caching. See the following section for details of what is involved when pickling QuerySets. The important thing for the purposes of this section is that the results are read from the database.
repr(). A
QuerySetis evaluated when you callrepr()on it. This is for convenience in the Python interactive interpreter, so you can immediately see your results when using the API interactively.len(). A
QuerySetis evaluated when you calllen()on it. This, as you might expect, returns the length of the result list.Note: If you only need to determine the number of records in the set (and don’t need the actual objects), it’s much more efficient to handle a count at the database level using SQL’s
SELECT COUNT(*). Django provides acount()method for precisely this reason.list(). Force evaluation of a
QuerySetby callinglist()on it. For example:entry_list = list(Entry.objects.all())
bool(). Testing a
QuerySetin a boolean context, such as usingbool(),or,andor anifstatement, will cause the query to be executed. If there is at least one result, theQuerySetisTrue, otherwiseFalse. For example:if Entry.objects.filter(headline="Test"):
print("There is at least one Entry with the headline Test")Note: If you only want to determine if at least one result exists (and don’t need the actual objects), it’s more efficient to use
exists().
Paginator Django 分页 When QuerySets are evaluated QuerySets 执行原理 QuerySets are lazy 惰性执行 访问db取数据的时机的更多相关文章
- Django——分页功能Paginator
Django分页功能----Paginator Paginator所需参数: Paginator(object_list,per_page) Paginator常用属性: per_page: 每页显示 ...
- django orm 分页(paginator)取数据出现警告manage.py:1: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'sign.models.Guest'> QuerySet.
使用django的orm做分页(Paginator)时出现了下面的警告 In [19]: p=Paginator(guest_list,2) manage.py:1: UnorderedObjectL ...
- 2 django系列之django分页与templatetags
preface 当页面出现的条目多的时候,我们就需要使用分页功能了.Django作为一个知名的web框架,自然也提供了分页功能,下面说说它. Python-shell 练练手 在python下入手 先 ...
- Django 分页功能
Django 分页功能比较强大,这边是结合官网的内容写的可以参考 https://docs.djangoproject.com/en/1.9/topics/pagination/ 分页命令行练习案列 ...
- 原生的 django 分页
原始的 django 分页 # 基本 写法 class Paginator(object): def __init__(self, object_list, per_page, orphans=0, ...
- django 分页组件
一.仿django分页功能自己实现 urls.py 1 2 3 4 5 6 7 8 9 from django.conf.urls import url from django.contrib i ...
- Django分页(一)
Django分页(一) 手动实现简单分页 HTML <!DOCTYPE html> <html lang="en"> <head> <me ...
- 2019.03.20 mvt,Django分页
MVT模式 MVT各部分的功能: M全拼为Model,与MVC中的M功能相同,负责和数据库交互,进行数据处理. V全拼为View,与MVC中的C功能相同,接收请求,进行业务处理,返 ...
- Django 分页查询并返回jsons数据,中文乱码解决方法
Django 分页查询并返回jsons数据,中文乱码解决方法 一.引子 Django 分页查询并返回 json ,需要将返回的 queryset 序列化, demo 如下: # coding=UTF- ...
随机推荐
- vue+element对常用表格的简单封装
在后台管理和中台项目中, table是使用率是特别的高的, 虽然element已经有table组件, 但是分页和其他各项操作还是要写一堆的代码, 所以就在原有的基础上做了进一步的封装 所涵盖的功能有: ...
- 本地TOMCAT启动打包项目(WAR)
首先打个包,右击项目-->Export... 选择WEB-->WAR file-->Next 选个放置地址,勾选红框处-->finish 找到自己的tomcat目录 ...
- spring mvc与mybatis事务整合
之前公司用的是mybatis,但事务管理这块是用ejb的CMT容器管理的事务.基本原理是ejb请求进来,业务代码会创建一个mybatis的session然后放入当前线程,之后所有的方法操作涉及到数据库 ...
- [leetcode]168. Excel Sheet Column Title表格列名编码(十进制和多进制相互转换)
其实就是一道,十进制转多进制的题 十进制转多进制就是从后边一位一位地取数. 这种题的做法是,每次用n%进制,相当于留下了最后一位,然后把这位添加到结果最前边.结果需要转为进制的符号. 下一次循环的n变 ...
- Mac苹果电脑单片机开发
1.安装虚拟机 可以阅读往期文章:Mac苹果电脑安装虚拟机 2.在虚拟机上安装CH340驱动,keil4,PZ-ISP, 下载 CH340驱动安装 下载keil4破解及汉化 下载普中科技烧录软件
- 笔记本使用网线连接可以进行ftp下载,但是通过wifi连接只能登陆不能下载的问题。
环境: (1)服务器为阿里云服务器,有公网ip,有内网ip,公网和内网已经做了相关端口的映射,ftp服务器为FileZilla,ftp服务器被动模式已开启,防火墙已关闭 (2)ftp客户端为java写 ...
- 达梦数据库学习(一、linux操作系统安装及数据库安装)
达梦数据库学习(一.linux操作系统安装及数据库安装) 环境介绍: 使用VM12+中标麒麟V7.0操作系统+达梦8数据库 一.linux系统搭建 本部分没有需要着重介绍,注意安装时基本环境选择&qu ...
- UML第二次结对作业
|作业要求|https://edu.cnblogs.com/campus/fzzcxy/2018SE1/homework/11250| | ---------- | ----------------- ...
- linux操作系统可以ping通ssh连接长时间无响应
一.问题描述 某集群数据节点服务器频繁无法连接,服务器间出现可ping通但ssh无法连接的情况,使用带外地址登录后远程控制也无法显示正常界面,重启后会短暂恢复. 二.排查问题 重启服务器后检查服务器S ...
- transmission protocol
传输层主要定义了主机应用程序间端到端的连通性,它一般包含四项基本功能 . 将应用层发往网络层的数据分段或将网络层发往应用层的数据段合并 建立端到端的链接,主要是建立逻辑连接以传送数据流 将数据段从一台 ...