django的通用视图

django的哲学就是最大的减轻我们的劳动.

所以内置功能做的非常强大.很多时候, 我们需要渲染一些数据的时候, 其实所用的view和模板都是非常相似的, 所以就有了我们的django通用视图. 

导入通用视图对象:

from django.views.generic import ListView,DetailView
from .models import TestModel
 
  


稍稍定制一下:
class TestList(ListView):
    '''自定义一些行为'''
    model = TestModel
    queryset = TestModel.objects.all()
    paginate_by = 20
    template_name = 'TestApp/Test_list.html'

class TestDetailView(DetailView):
    """
    todo
    """
    model = TestModel
    template_name = 'TestApp/Test_Detail.html'

在URLconf里配置:

url(r'...', views.TestList.as_view(), name="detail"),


你可能感兴趣的:(django,python)