這篇文章將為大家詳細講解有關Django中有哪些視圖類型,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
網(wǎng)站建設哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、成都小程序開發(fā)、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了興山免費建站歡迎大家使用!
1、基于功能的視圖
基于函數(shù)的視圖是使用python中的函數(shù)編寫的,該函數(shù)以HttpRequest對象作為參數(shù)并返回HttpResponse對象?;诠δ艿囊晥D通常分為4種基本策略,即CRUD(創(chuàng)建,檢索,更新,刪除)。CRUD是用于開發(fā)的任何框架的基礎。
# import the standard Django Model # from built-in library from django.db import models # declare a new model with a name "GeeksModel" class GeeksModel(models.Model): # fields of the model title = models.CharField(max_length = 200) description = models.TextField() # renames the instances of the model # with their title name def __str__(self): return self.title
2、基于類的視圖
基于類的視圖提供了一種將視圖實現(xiàn)為Python對象而非函數(shù)的替代方法。與基于函數(shù)的視圖相比,基于類的視圖更易于管理。
from django.views.generic.list import ListView from .models import GeeksModel class GeeksList(ListView): # specify the model for list view model = GeeksModel
關于Django中有哪些視圖類型就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。