Django 突然不能加载静态文件了
Django suddenly can't load static files anymore
我有一个 django 项目,突然(在更新 PyCharm 之后)无法再加载静态文件。这是项目结构:
├── _quanttool
│ ├── _quanttool
│ │ ├── __init__.py
│ │ ├── asgi.py
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── _static
│ │ ├── css
│ │ ├── img
│ │ ├── js
│ │ ├── scss
│ │ └── vendor
│ ├── _templates
│ │ ├── base
│ │ ├── funds_tool
│ │ └── transaction_list
│ ├── funds_tool
.
.
.
│ ├── db.sqlite3
│ └── manage.py
├── venv
├── .gitignore
└── README.md
在 settings.py 文件中我配置了:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/_static/'
STATIC_ROOT = '_static'
STATICFILES_LOCATION = [os.path.join(BASE_DIR, '_static')]
在基础 HTML 模板中,我设置了 {% load static %}
和 <link href="{% static 'css/sb-admin-2.min.css' %}" rel="stylesheet">
真不明白为什么突然报错:
"GET /_static/css/sb-admin-2.css HTTP/1.1" 404 1682" ...
知道为什么 Django 再也找不到静态文件了吗?
最佳
注释掉 STATIC_ROOT = '_static'
并将以下代码添加到您的 settings.py 文件中。
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/_static/'
STATICFILES_DIRS = (os.path.join(BASE_DIR, '_static'),)
如果还是不行,那么运行终端上的这个命令
$ python manage.py collectstatic
我有一个 django 项目,突然(在更新 PyCharm 之后)无法再加载静态文件。这是项目结构:
├── _quanttool
│ ├── _quanttool
│ │ ├── __init__.py
│ │ ├── asgi.py
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── _static
│ │ ├── css
│ │ ├── img
│ │ ├── js
│ │ ├── scss
│ │ └── vendor
│ ├── _templates
│ │ ├── base
│ │ ├── funds_tool
│ │ └── transaction_list
│ ├── funds_tool
.
.
.
│ ├── db.sqlite3
│ └── manage.py
├── venv
├── .gitignore
└── README.md
在 settings.py 文件中我配置了:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/_static/'
STATIC_ROOT = '_static'
STATICFILES_LOCATION = [os.path.join(BASE_DIR, '_static')]
在基础 HTML 模板中,我设置了 {% load static %}
和 <link href="{% static 'css/sb-admin-2.min.css' %}" rel="stylesheet">
真不明白为什么突然报错: "GET /_static/css/sb-admin-2.css HTTP/1.1" 404 1682" ...
知道为什么 Django 再也找不到静态文件了吗?
最佳
注释掉 STATIC_ROOT = '_static'
并将以下代码添加到您的 settings.py 文件中。
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/_static/'
STATICFILES_DIRS = (os.path.join(BASE_DIR, '_static'),)
如果还是不行,那么运行终端上的这个命令
$ python manage.py collectstatic