静态文件,常用在head中,可动态的去检索settings里面的STATIC_URL = ‘/static/‘,然后做拼接settings.py中 STATIC_URL = ‘/static9/‘ # 9只是为了方便说明问题 STATICFILES_DIRS = [ os.path.join(BASE_DIR,‘static2‘), os.path.join(BASE_DIR,‘static0‘), os.path.join(BASE_DIR,‘static1‘), ]html.py中 {% load static %} # 常放在html标签的第一行 {% get_static_prefix %} >>> /static9/ <link href="{% static ‘/css/bootstrap.css‘ %}"> >>> ‘/static9/css/bootstrap.css‘ 自动做拼接 >>> 查找‘css/bootstrap.css‘这个文件 >>> 查找顺序是按照添加路径的先后,也就是 2 -> 0 -> 1
原文地址:https://www.cnblogs.com/jiangzongyou/p/11981900.html
时间: 2024-11-01 17:02:13