标签:首页 引号 方法 改进 说明 template 现在 根目录 静态方法
django2.1 在路由上作了改进,以前的‘^$” 代表根目录,现在只要空引号就好,下面还顺便说明了静态演染首页的方法,但是要静态方法还在在前面引入:
from django.views.generic import TemplateView
然后下面可以静态一个路由了
path(‘‘, TemplateView.as_view(template_name = "index.html"), name = "index.html")
标签:首页 引号 方法 改进 说明 template 现在 根目录 静态方法
原文地址:https://www.cnblogs.com/fgxwan/p/9859342.html