首页 > 代码库 > django使用templates模板

django使用templates模板

Django中Settings中Templates的路径设置

## mysite/mysite/settings.py
## mysite是项目名
TEMPLATES = [
    {
        ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
        ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)],           # templates
        ‘APP_DIRS‘: True,
        ‘OPTIONS‘: {
            ‘context_processors‘: [
                ‘django.template.context_processors.debug‘,
                ‘django.template.context_processors.request‘,
                ‘django.contrib.auth.context_processors.auth‘,
                ‘django.contrib.messages.context_processors.messages‘,
            ],
        },
    },
]

上面这个templates文件夹是放在project的目录下面的,是项目中或者说项目中所有的应用公用的一些模板


如果希望templates只给某一个app使用,可以这样设置

## mysite/mysite/settings.py
## mysite/app1/   
## mysite是项目名字,app1是应用名字
TEMPLATES = [
    {
        ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
        ‘DIRS‘: [os.path.join(BASE_DIR, ‘app1/templates‘)],    ## templates
        ‘APP_DIRS‘: True,
        ‘OPTIONS‘: {
            ‘context_processors‘: [
                ‘django.template.context_processors.debug‘,
                ‘django.template.context_processors.request‘,
                ‘django.contrib.auth.context_processors.auth‘,
                ‘django.contrib.messages.context_processors.messages‘,
            ],
        },
    },
]


#########################

总结来说说:BASE_DIR是指mysite项目的绝对路径。

‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)]  是指到  BASE_DIR/templates文件夹中去取模板
‘DIRS‘: [os.path.join(BASE_DIR, ‘app1/templates‘)] 是指导  BASE_DIR/app1/templates文件夹中去取模板
一般来说,应该设置‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)],公用的templates需要指定。
app1专用的templates,放在app1/templates下,可以不需指定。因为在app1.views中若要指定一个专用模板,只要直接写‘app1_index.html’,Django服务器会在views文件所在的当前层(/app1)中找到templates,从而找到模板‘app1_index.html‘.
指定公用的templates路径,所有apps都可以调用,方便快捷。
app专用的templates不需要指定,这样当要复用这个app的时候,不需要考虑templates路径问题。


转自:http://www.cnblogs.com/haoshine/p/5391519.html



本文出自 “zengestudy” 博客,请务必保留此出处http://zengestudy.blog.51cto.com/1702365/1901542

django使用templates模板