标签:file plugins dir 内容 ase url bsp cfile 更改
先看下静态文件配置
STATIC_URL = ‘/static/‘ STATICFILES_DIRS = [ os.path.join(BASE_DIR, ‘static‘) ]
如果有需求,需要更改static的名字,改完之后,静态文件的地址变了,无法访问静态文件了,需要修改所有引入静态文件的内容,如下修改就能解决问题了
{% load static %} <link rel="stylesheet" href="{% static ‘plugins/bootstrap-3.3.7/css/bootstrap.min.css‘ %}">
获取静态文件的别名
{% get_static_prefix %}
引入静态文件的第二种写法
<link rel="stylesheet" href="{% get_static_prefix %}css/dsb.css">
标签:file plugins dir 内容 ase url bsp cfile 更改
原文地址:https://www.cnblogs.com/wanglan/p/10306722.html