您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在Python中使用Django實現簡單分頁,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
models.py:
from django.db import models class Book(models.Model): title = models.CharField(max_length=32) def __str__(self): return self.title class Meta: db_table = "books"
批量創建 106 條數據
import os if __name__ == '__main__': os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite3.settings") import django django.setup() from app01 import models # 106 個書籍對象 objs = [models.Book(title="《Python 的故事第{}版》".format(i)) for i in range(116)] # 在數據庫中批量創建, 10 次一提交 models.Book.objects.bulk_create(objs, 10)
views.py:
from django.shortcuts import render from app01 import models def book_list(request): # 從 URL 中取參數 page_num = request.GET.get("page") print(page_num, type(page_num)) page_num = int(page_num) # 定義兩個變量保存數據從哪兒取到哪兒 data_start = (page_num-1)*10 data_end = page_num*10 # 書籍總數 total_count = models.Book.objects.all().count() # 每一頁顯示多少條數據 per_page = 10 # 總共需要多少頁碼來顯示 total_page, m = divmod(total_count, per_page) if m: total_page += 1 all_book = models.Book.objects.all()[data_start:data_end] # 拼接 html 的分頁代碼 html_list = [] for i in range(1, total_page+1): tmp = '<li><a href="/book_list/?page={0}" rel="external nofollow" >{0}</a></li>'.format(i) html_list.append(tmp) page_html = "".join(html_list) return render(request, "book_list.html", {"books": all_book, "page_html": page_html})
book_list.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>書籍列表</title> <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css" rel="external nofollow" > </head> <body> <div class="container"> <table class="table table-bordered"> <thead> <tr> <th>序號</th> <th>id</th> <th>書名</th> </tr> </thead> <tbody> {% for book in books %} <tr> <td>{{ forloop.counter }}</td> <td>{{ book.id }}</td> <td>{{ book.title }}</td> </tr> {% endfor %} </tbody> </table> <nav aria-label="Page navigation"> <ul class="pagination"> {{ page_html|safe }} </ul> </nav> </div> </body> </html>
以上就是怎么在Python中使用Django實現簡單分頁,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。