Python:Django的ListView超詳細用法(含分頁paginate功能)
開發環境:
python 3.6django 1.11
場景一
經常有從資料庫中獲取一批資料,然後在前端以列表的形式展現,比如:獲取到所有的使用者,然後在使用者列表頁面展示。
解決方案
常規寫法是,我們透過Django的ORM查詢到所有的資料,然後展示出來,程式碼如下:
def user_list(request):
"""返回UserProfile中所有的使用者"""
users = UserProfile.objects.all()
return render(request, 'talks/users_list.html', context={"user_list": users})
這樣能夠解決問題,但是Django針對這種常用場景,提供了一個更快速便捷的方式,那就是ListView,用法如下:
from django.views.generic import ListView
class UsersView(ListView):
model = UserProfile
template_name = 'talks/users_list.html'
context_object_name = 'user_list'
這樣我們就完成了上邊功能,程式碼很簡潔。
場景二:
我想要對資料做過濾,ListView怎麼實現?程式碼如下:
from django.views.generic import ListView
class UsersView(ListView):
model = UserProfile
template_name = 'talks/users_list.html'
context_object_name = 'user_list'
def get_queryset(self): # 重寫get_queryset方法
# 獲取所有is_deleted為False的使用者,並且以時間倒序返回資料
return UserProfile.objects.filter(is_deleted=False).order_by('-create_time')
如果你要對資料做更多維度的過濾,比如:既要使用者是某部門的,還只要獲取到性別是男的,這時候,可以使用Django提供的Q函式來實現。
場景三
我想要返回給Template的資料需要多個,不僅僅是user_list,可能還有其他資料,如獲取當前登陸使用者的詳細資訊,這時怎麼操作?,程式碼如下:
from django.views.generic import ListView
class UsersView(ListView):
model = UserProfile
template_name = 'talks/users_list.html'
context_object_name = 'user_list'
def get_context_data(self, **kwargs): # 重寫get_context_data方法
# 很關鍵,必須把原方法的結果拿到
context = super().get_context_data(**kwargs)
username = self.request.GET.get('user', None)
context['user'] = UserProfile.objects.get(username=username
return context
這樣,你返回給Template頁面時,context包含為{'user_list': user_list, 'user': user}。
場景四
我想要限制介面的請求方式,比如限制只能GET訪問,程式碼如下:
from django.views.generic import ListView
class UsersView(ListView):
model = UserProfile
template_name = 'talks/users_list.html'
context_object_name = 'user_list'
http_method_names = ['GET'] # 加上這一行,告知允許那種請求方式
不清楚的地方,可以留言!更多Python教程也會繼續更新!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69923331/viewspace-2693505/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- android的listview的詳細用法AndroidView
- 初學教程探索分頁功能 paginate 和 render
- 超級詳細Tcpdump 的用法TCP
- (轉)超級詳細Tcpdump 的用法TCP
- 超級詳細Tcpdump 的用法(轉)TCP
- 超級詳細的tcpdump用法介紹TCP
- Flutter ListView 用法詳解FlutterView
- Django(35)Django請求生命週期分析(超詳細)Django
- Django python 基於Layui的分頁DjangoPythonUI
- Django的分頁Django
- Django學習筆記(12)——分頁功能Django筆記
- laravel 8 修改預設的paginate分頁模板Laravel
- Ruby實踐—will_paginate實現分頁
- django分頁Django
- python使用xpath(超詳細)Python
- Django之分頁功能Django
- 超詳細 Java 15 新功能介紹Java
- C# ListView用法詳解 很完整C#View
- 超詳細的介紹Python語句Python
- 超詳細的Python自學專案收集!Python
- 15、flask-模型-models-表的操作-分頁paginate()Flask模型
- BlockUI詳細用法BloCUI
- mysql中limit的用法詳解[資料分頁常用]MySqlMIT
- 13.Django-分頁Django
- Django REST framework 分頁DjangoRESTFramework
- django--DRF分頁Django
- 3.Django分頁Django
- 超詳細講解頁面載入過程
- python爬取網頁詳細教程Python網頁
- 【C#】-Dictionary的詳細用法C#
- chmod命令詳細用法
- [轉載] Python中協程的詳細用法和例子Python
- 超詳細!盤點Python中字串的常用操作Python字串
- django 自定義分頁與bootstrap分頁結合Djangoboot
- Django(68)drf分頁器的使用Django
- Nginx超詳細常用功能演示,夠用啦~~~Nginx
- session的詳細說明和用法Session
- Django model select的各種用法詳解Django