标签:自己 路径配置 打开 settings stat setting files 配置出错 templates
1. 创建目录 static 和 templates
首先你需要在自己的应用程序目录下面创建2个子目录 static 和 templates,static下存放静态文件,templates下存放网页模板文件
2. settings.py设置STATICFILES_DIRS
打开settings.py,在底部添加:
STATIC_URL = ‘/static/‘
STATICFILES_DIRS = (
os.path.join(os.path.join(BASE_DIR, ‘应用程序名字/static‘)),
)
3. 设置html
{% load staticfiles %}#这句添加在html文件的最上面
# 然后在需要的地方按照这个格式进行调用,如:
<link href="{% static "css/base.css" %}" rel="stylesheet">
<img src="{% static "imgs/bg.jpg" %}"/>
django2.2 版本static静态文件路径配置出错的问题解决方案。
标签:自己 路径配置 打开 settings stat setting files 配置出错 templates
原文地址:https://www.cnblogs.com/tuobei/p/12335473.html