1
garygay OP 树图看不清楚,templates 是建立在项目 tango_with_django_project 下的,然后下面是 rango-index.html
|
2
garygay OP 问题找到了 ,是配置路径的问题 。谢谢大家。
|
3
garygay OP 最后发现可能是版本问题,还是按照官方最新的 1.11 的,把 templates 建立在 APP 目录下。
|
4
zsdostar 2017-06-22 12:28:32 +08:00
可以试试用继承 View 类的类来写 view, 这种
from django.views.generic.base import View class index(View): def get(self, request): context_dict = {'boldmessage': 'Tango with Django,hahaha'} return render(request, 'rango/index.html', context=context_dict) |