django-Views之类视图 (六)

时间:2022-07-23
本文章向大家介绍django-Views之类视图 (六),主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

book/urls.py

from django.urls import path
from . import views

urlpatterns = [
    path('',views.IndexView.as_view(),name="index"),
]

book/views.py

from django.views import View
from django.shortcuts import render

class IndexView(View):
    def get(self,request):
        return render(request,"index.html")