django查看网址映射

时间:2014-11-11 08:16:24

标签: python django

我正在尝试从django中的嵌套目录加载模板,但是不断获得未正确配置的模式匹配错误。我已经尝试了文件夹名称的所有组合,但错误仍在继续,我正在摸着这个,任何帮助?这是我的文件:

view.py

from django.http import HttpResponse
from django.template import loader

def index():
    curTemplate = loader.get_template('/droneMapper/index.html')
    return HttpResponse(curTemplate.render())

settings.py

BASE_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir)

TEMPLATE_DIRS = (os.path.abspath(os.path.join(BASE_DIR, 'templates')),)

文件结构是:

root
 -app
 -templates
     -app
 -setting

1 个答案:

答案 0 :(得分:0)

我只是使用这个小代码:

BASE_DIR = os.path.dirname(os.path.abspath(__file__))

TEMPLATE_DIRS = (os.path.join(BASE_DIR, 'templates'),)

对我来说很好。