共计 1569 个字符,预计需要花费 4 分钟才能阅读完成。
Django 1.6 后 settings.py 文件中没有了 TEMPLATE_DIRS 模板目录和 STATICFILES_DIRS 静态访问目录,需要手动添加,最近也遇到这个问题,把解决办法说一下
1. 环境
系统:Ubuntu
django 版本:Django-1.8.4.tar.gz
2.settings.py 配置文件说明
增加了一下内容
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
base_dir 就是工程 project 的目录,工程目录下一级就是应用 app 的目录,os.path.dirname(__file__):settings.py 文件所在的目录。
3. 指明 TEMPLATE_DIRS 路径,找到下面这段代码,标红部分就是添加的 TEMPLATE 目录,默认为一个空列表。
TEMPLATES = [
{
‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
#‘BACKEND’: ‘/root/day10/s4web/templates’,
‘DIRS‘: [os.path.join(BASE_DIR,’templates’).replace(‘\\’, ‘/’),],
‘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‘,
],
},
},
]
其实后面的 replace(‘\\’, ‘/’)可以不加,这句用在 windows 中把‘\’转换成‘/’。
4.STATICFILES_DIRS 配置也比较简单,就在 settings.py 的末尾加上下面代码就可以了
STATICFILES_DIRS = (os.path.join(BASE_DIR,’static’),)
5. 配置完成了。
Django1.8 返回 json 字符串和接收 post 的 json 字符串内容 http://www.linuxidc.com/Linux/2015-07/120226.htm
如何使用 Docker 组件开发 Django 项目?http://www.linuxidc.com/Linux/2015-07/119961.htm
Ubuntu Server 12.04 安装 Nginx+uWSGI+Django 环境 http://www.linuxidc.com/Linux/2012-05/60639.htm
Django+Nginx+uWSGI 部署 http://www.linuxidc.com/Linux/2013-02/79862.htm
Django 实战教程 http://www.linuxidc.com/Linux/2013-09/90277.htm
Django Python MySQL Linux 开发环境搭建 http://www.linuxidc.com/Linux/2013-09/90638.htm
Django 的详细介绍 :请点这里
Django 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-01/127691.htm