您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Django中有哪些視圖類型,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
1、基于功能的視圖
基于函數的視圖是使用python中的函數編寫的,該函數以HttpRequest對象作為參數并返回HttpResponse對象。基于功能的視圖通常分為4種基本策略,即CRUD(創建,檢索,更新,刪除)。CRUD是用于開發的任何框架的基礎。
# 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、基于類的視圖
基于類的視圖提供了一種將視圖實現為Python對象而非函數的替代方法。與基于函數的視圖相比,基于類的視圖更易于管理。
from django.views.generic.list import ListView from .models import GeeksModel class GeeksList(ListView): # specify the model for list view model = GeeksModel
關于Django中有哪些視圖類型就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。