查詢所有才涉及到過濾,其他接口都不需要
restful規(guī)范中有一條,請求地址中帶過濾條件:分頁、排序、過濾統(tǒng)稱為過濾
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括海滄網(wǎng)站建設(shè)、海滄網(wǎng)站制作、海滄網(wǎng)頁制作以及海滄網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,海滄網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到海滄省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
使用內(nèi)置過濾類的步驟
from rest_framework.filters import OrderingFilter,SearchFilter
必須是繼承GenericAPIView+ListModelMixin的之類視圖上,必須是查詢所有的視圖
1.配置過濾類
filter_backends=[SearchFilter,]
2.配置過濾類的字段
search_fields = ['name', ]
3.支持前端的訪問形式
http://127.0.0.1:8000/books/?search=三 # 只要name中或publish中有三都能搜出來
內(nèi)置過濾類只能通過search寫條件,如果配置了多個(gè)過濾字段,是或者的條件
#1 安裝:pip3 install django-filter
#2 注冊,在app中注冊django-filter
#3 全局配,或者局部配
'DEFAULT_FILTER_BACKENDS': ('django_filters.rest_framework.DjangoFilterBackend',)
#4 視圖類(局部配)
from django_filters.rest_framework import DjangoFilterBackend
class BookView(ListAPIView):
queryset = Book.objects.all()
serializer_class = BookSerializer
filter_backends = [DjangoFilterBackend]
filterset_fields = ('name',) #配置可以按照哪個(gè)字段來過濾,可以跨表過濾,意思是括號里的字段可以是外鍵字段
1.新建一個(gè)filters.py文件,在文件內(nèi)自定義一個(gè)過濾類
暫略有點(diǎn)問題
### 排序組件
**排序功能只針對于所有接口,繼承了GenericAPIView的視圖類,只要加入,倆個(gè)類屬性就可以了**
from rest_framework.filters import OrderingFilter
class BookView(ViewSetMixin, GenericAPIView, ListModelMixin):
queryset = Book.objects.all()
serializer_class = BookSerializer
filter_backends = [OrderingFilter, ]
ordering_fields = ['price',]
訪問地址:
http://127.0.0.1:8000/books/?ordering=-price # 按照price降序
http://127.0.0.1:8000/books/?ordering=price # 按照price升序
http://127.0.0.1:8000/books/?ordering=price,id # 先按價(jià)格升序排,價(jià)格一樣再按id升序排
注意:
ordering后面跟的必須要在ordering_fields = ['price','id']先注冊好
![image](https://img2022.cnblogs.com/blog///--.png)
### 全局異常處理
在rest_framework的中,繼承了apiview以及其子類的視圖函數(shù),在出現(xiàn)錯(cuò)誤之后,會(huì)走dispatch方法里的self.handle_exception方法
![image](https://img2022.cnblogs.com/blog///--.png)
![image](https://img2022.cnblogs.com/blog///--.png)
我們可以對于未做處理的錯(cuò)誤信息,可以自定義返回給前端的信息格式,在py文件中重寫異常處理的方法,并在setting里配置成我們自己寫的異常處理方法!
from rest_framework.views import exception_handler
from rest_framework.response import Response
from rest_framework import status
def my_exception_handler(exc, context):
response=exception_handler(exc, context)
# 兩種情況,一個(gè)是None,drf沒有處理
#response對象,django處理了,但是處理的不符合咱們的要求
# print(type(exc))
if not response:
if isinstance(exc, ZeroDivisionError):
return Response(data={'status': 777, 'msg': "除以0的錯(cuò)誤" + str(exc)}, status=status.HTTP_400_BAD_REQUEST)
return Response(data={'status':999,'msg':str(exc)},status=status.HTTP_400_BAD_REQUEST)
else:
# return response
return Response(data={'status':888,'msg':response.data.get('detail')},status=status.HTTP_400_BAD_REQUEST)
'EXCEPTION_HANDLER': 'app01.app_auth.my_exception_handler',
### 自己封裝的response對象
class APIResponse(Response):
def init(self,code=100,msg='成功',data=None,status=None,headers=None,**kwargs):
dic = {'code': code, 'msg': msg}
if data:
dic = {'code': code, 'msg': msg,'data':data}
dic.update(kwargs)
super().init(data=dic, status=status,headers=headers)
return APIResponse(data={"name":'lqz'},token='dsafsdfa',aa='dsafdsafasfdee')
return APIResponse(data={"name":'lqz'})
return APIResponse(code='101',msg='錯(cuò)誤',data={"name":'lqz'},token='dsafsdfa',aa='dsafdsafasfdee',header={})
本文題目:過濾組件、排序組件、全局異常處理、自己封裝的response對象
網(wǎng)站地址:http://redsoil1982.com.cn/article14/dsogcde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計(jì)公司、做網(wǎng)站、企業(yè)建站、全網(wǎng)營銷推廣、營銷型網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)