笛卡尔乘积 python语法
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().
笛卡尔乘积 python语法的更多相关文章
- [转]sql语句中出现笛卡尔乘积 SQL查询入门篇
本篇文章中,主要说明SQL中的各种连接以及使用范围,以及更进一步的解释关系代数法和关系演算法对在同一条查询的不同思路. 多表连接简介 在关系数据库中,一个查询往往会涉及多个表,因为很少有数据库只有一个 ...
- sql语句中出现笛卡尔乘积
没有join条件导致笛卡尔乘积 学过线性代数的人都知道,笛卡尔乘积通俗的说,就是两个集合中的每一个成员,都与对方集合中的任意一个成员有关联.可以想象,在SQL查询中,如果对两张表join查询而没有jo ...
- ASP.NET MVC中实现属性和属性值的组合,即笛卡尔乘积02, 在界面实现
在"ASP.NET MVC中实现属性和属性值的组合,即笛卡尔乘积01, 在控制台实现"中,在控制台应用程序中实现了属性值的笛卡尔乘积.本篇在界面中实现.需要实现的大致如下: 在界面 ...
- ASP.NET MVC中实现属性和属性值的组合,即笛卡尔乘积01, 在控制台实现
在电商产品模块中必经的一个环节是:当选择某一个产品类别,动态生成该类别下的所有属性和属性项,这些属性项有些是以DropDownList的形式存在,有些是以CheckBoxList的形式存在.接着,把C ...
- sql语句中出现笛卡尔乘积 SQL查询入门篇
2014-12-29 凡尘工作室 阅 34985 转 95 本篇文章中,主要说明SQL中的各种连接以及使用范围,以及更进一步的解释关系代数法和关系演算法对在同一条查询的不同思路. 多表连接简介 ...
- Mysql训练:两个表中使用 Select 语句会导致产生 笛卡尔乘积 ,两个表的前后顺序决定查询之后的表顺序
力扣:超过经理收入的员工 Employee 表包含所有员工,他们的经理也属于员工.每个员工都有一个 Id,此外还有一列对应员工的经理的 Id. +----+-------+--------+----- ...
- js实现的笛卡尔乘积-商品发布
//笛卡儿积组合 function descartes(list) { //parent上一级索引;count指针计数 var point = {}; var result = []; var pIn ...
- Js笛卡尔乘积
self.getDescartesSku = function (selSaleProp, i, nowLst, allALst) { if (selSaleProp.length = ...
- CROSS JOIN连接用于生成两张表的笛卡尔集
将两张表的情况全部列举出来 结果表: 列= 原表列数相加 行= 原表行数相乘 CROSS JOIN连接用于生成两张表的笛卡尔集. 在sql中cross join的使用: 1.返回的记录数为两个 ...
随机推荐
- path方法总结
$.mobile.path.get(url);//获取URL地址的目录部分,就是除了a.html之外的那部分 jQuery.mobile.path.getDocumentBase(bool) //获取 ...
- TIM—基本定时器
本章参考资料:< STM32F4xx 参考手册>.< STM32F4xx 规格书>.库帮助文档< stm32f4xx_dsp_stdperiph_lib_um.chm&g ...
- [gpio]Linux GPIO简单使用方式2-sysfs
转自:http://blog.csdn.net/cjyusha/article/details/50418862 在Linux嵌入式设备开发中,对GPIO的操作是最常用的,在一般的情况下,一般都有对应 ...
- tftp server setup
今天开始调试ARM的板子,要通过tftp下载到板子上,所以又要配置tftp服务器,真的烦死了… (本人酷爱装系统,所以经常都要搞配置) 因为之前已经在Ubuntu下搭建过很多次tftp服务器了,但是一 ...
- Spider Studio 新版本 (20140108) - 优化设置菜单 / 生成程序集支持版本号
本次更新包含两项改进: 1. 优化了设置菜单, 去掉了一些不必要的浏览器行为设置选项: 取而代之的是在脚本中由用户自行设置: public void Run() { Default.CaptureNe ...
- #!/bin/sh与#!/bin/bash的区别
Linux 中的 shell 有很多类型,其中最常用的几种是: Bourne shell (sh).C shell (csh) 和 Korn shell (ksh), 各有优缺点.Bourne she ...
- Android基础总结(八)Service
服务两种启动方式(掌握) startService 开始服务,会使进程变成为服务进程 启动服务的activity和服务不再有一毛钱关系 bindService 绑定服务不会使进程变成服务进程 绑定服务 ...
- node.js在2018年能继续火起来吗?我们来看看node.js的待遇情况
你知道node.js是怎么火起来的吗?你知道node.js现在的平均工资是多少吗?你知道node.js在2018年还能继续火吗?都不知道?那就来看文章吧,多学点node.js,说不定以后的你工资就会高 ...
- HTML5关于上传API的一些使用(上)
HTML5提供了很多有用的API,其中就包括上传的API,XMLHttpRequest2.0,在HTML5时代之前,需要进行二进制的上传一般都会才用flash的方案,但是当XMLHttpRequest ...
- eclipse不能自动编译生成class文件的解决办法
最近在项目项目开发过程中遇到eclipse不能自动编译生成class文件,当时很纳闷,每次修改代码后运行都是修改前的效果,没辙了,只好反编译原来的class文件,结果发现,class文件里并没有看到修 ...