标签: python
我正在尝试学习编程,并在我的核心应用程序中遇到过这个问题。
from django.shortcuts import render from django.views.generic import TemplateView # Create your views here. class SplashView(TemplateView): template_name = "index.html"
在这种情况下,上述课程的具体内容是什么?