📌  相关文章
📜  基于 django 类的视图 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:05.534000             🧑  作者: Mango

代码示例2
# some_app/views.py
from django.views.generic import TemplateView

class AboutView(TemplateView):
    template_name = "about.html"