溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django的分頁器Paginator 從django中導入類

發(fā)布時間:2020-10-20 21:02:57 來源:腳本之家 閱讀:125 作者:谷子的 欄目:開發(fā)技術

先創(chuàng)建表,然后生成批量數(shù)據(jù)。

在models文件里

from django.db import models

# Create your models here.


class Book(models.Model):

  name = models.CharField(max_length=32)
  price = models.DecimalField(max_digits=5,decimal_places=2)

然后執(zhí)行python manage.py makemigrations ,python migrate 生成數(shù)據(jù)庫。把數(shù)據(jù)庫從左邊拉到右邊,

在url里創(chuàng)建showBooks視圖函數(shù)API,

from django.conf.urls import url
from django.contrib import admin

from app01 import views
urlpatterns = [
  url(r'^admin/', admin.site.urls),
  url(r'^index/', views.index),
  url(r'^ajaxHandle/', views.ajaxHandle),
  url(r'^showBooks/', views.showBooks),-------

在views文件中創(chuàng)建showBooks 函數(shù),批量導入數(shù)據(jù),用bulk_create()

從django中導入Paginstor類,用對象調用方法,

def showBooks(requests):

  #批量導入數(shù)據(jù)bulk_create()方法

  # book_list=[]#里面存一個個對象
  # for i in range(100):
  #   book_list.append(Book(name="book%s"%i,price=2+i+2))
  #
  # Book.objects.bulk_create(book_list)

  book_list_all = Book.objects.all()

  #分頁器Paginator,是導入了一個類,在用實列出來的對象調用方法,
  from django.core.paginator import Paginator,EmptyPage,PageNotAnInteger

  #book_list_all 是要被分頁的對象,第二個參數(shù),是每頁顯示的條數(shù)
  p = Paginator(book_list_all,20)# p就是每頁的對象,
  p.count #數(shù)據(jù)總數(shù)
  p.num_pages #總頁數(shù)
  p.page_range#[1,2,3,4,5],得到頁碼,動態(tài)生成,

  page_num = requests.GET.get("page")#以get的方法從url地址中獲取
  #如果輸錯了頁碼,
  try:
    book_list = p.page(page_num)#括號里的是頁數(shù),顯示指定頁碼的數(shù)據(jù),動態(tài)顯示數(shù)據(jù),所以不能寫死了

  except PageNotAnInteger:#如果輸入頁碼錯誤,就顯示第一頁
    book_list = p.page(1)
  except EmptyPage:#如果超過了頁碼范圍,就把最后的頁碼顯示出來,
    book_list = p.page(p.num_pages)

  return render(requests,"showBooks.html",locals())

數(shù)據(jù)庫生成數(shù)據(jù)

django的分頁器Paginator 從django中導入類

在templates 創(chuàng)建showBooks頁面,把數(shù)據(jù)庫數(shù)據(jù)渲染出來

{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.css' %}" rel="external nofollow" >


</head>
<body>

<ul>
{#request 也可以在這里渲染出來#}
  {% for book in book_list %}
    <li>{{ book.id }}&nbsp&nbsp&nbsp&nbsp&nbsp{{ book.name }}&nbsp&nbsp&nbsp&nbsp&nbsp{{ book.price }}</li>
  {% endfor %}


</ul>


   <ul class="pagination">
     {% if book_list.has_previous %}
    <li><a href="/showBooks/?page={{ book_list.previous_page_number }}" rel="external nofollow" >上一頁</a></li> ---直接使用方法,上一頁,
    {% else %}
    <li class="disabled"><a href="#" rel="external nofollow" rel="external nofollow" >上一頁</a></li>
     {% endif %}

   {% for num in p.page_range %}
    <li><a href="/showBooks/?page={{ num }}" rel="external nofollow" >{{ num }}</a></li>
   {% endfor %}

    {% if book_list.has_next %}
    <li><a href="/showBooks/?page={{ book_list.next_page_number }}" rel="external nofollow" >下一頁</a></li>
   {% else %}
    <li class="disabled"><a href="#" rel="external nofollow" rel="external nofollow" >下一頁</a></li>
    {% endif %}

   </ul>
</body>
</html>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI