我知道这个问题已经被问了很多,但我真的无法弄清楚为什么我的静态文件不会被加载。我从朋友那里克隆了一个项目(不知道这与它有什么关系),当我尝试链接到静态文件时,我一直在Chrome上的调试控制台中收到404错误。
我的HTML中的标题
{% load staticfiles %}
{% load static %}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<!--http://ianlunn.github.io/Hover/-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="{% static 'css/hover.css' %}" rel="stylesheet" media="all">
<link href="css/hover.css" rel="stylesheet" media="all">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<link rel="stylesheet" href="{% static 'css/bootstrap-theme.css' %}">
<link rel="stylesheet" href="{% static 'css/bootstrap-override.css' %}">
</head>
import os
import datetime
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DJANGO_DIR = os.path.dirname(BASE_DIR)
PROJECT_DIR = os.path.dirname(os.path.dirname(DJANGO_DIR))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = ****
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
"django.contrib.sites",
#3rd Party APPS
'rest_framework',
'rest_framework_jwt',
'cuser', #https://github.com/tmm/django-username-email
"pinax.stripe",
#Custom modules
'api',
#Own apps
'apps.user',
'apps.payment',
]
# Custom user model
AUTH_USER_MODEL = 'user.User'
# SITE_ID for the Sites framework
SITE_ID = 1
PINAX_STRIPE_SECRET_KEY = os.environ.get("STRIPE_SECRET_KEY", "**")
PINAX_STRIPE_PUBLIC_KEY = os.environ.get("STRIPE_PUBLIC_KEY", "**")
JWT_AUTH = {
'JWT_ALLOW_REFRESH': True,
'JWT_EXPIRATION_DELTA': datetime.timedelta(days=14)
}
DEBUG_TOOLBAR_PANELS = [
'debug_toolbar.panels.signals.SignalsPanel',
]
MIDDLEWARE_CLASSES = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
# 'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'audit_log.middleware.UserLoggingMiddleware',
]
ROOT_URLCONF = 'core.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(DJANGO_DIR, 'templates'), os.path.join(DJANGO_DIR, 'email_templates')],
'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',
'django.template.context_processors.media',
],
},
},
]
WSGI_APPLICATION = 'core.wsgi.application'
REST_FRAMEWORK = {
# 'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAuthenticated',),
'DEFAULT_AUTHENTICATION_CLASSES': (
# 'rest_framework.authentication.SessionAuthentication',
# 'rest_framework.authentication.BasicAuthentication',
'rest_framework_jwt.authentication.JSONWebTokenAuthentication',
),
}
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': '',
'USER': '',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '3306',
}
}
# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = '/project/static/'
MEDIA_URL = 'django/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'django/')
urls.py
urlpatterns = [
url(r'^', include(auth_urls)),
url(r'^', include(user_urls)),
url(r'^', include(referral_urls)),
url(r'^', include(payment_urls)),
url(r'^', include(cabinet_urls)),
# Admin
url(r'^admin/', admin.site.urls),
url(r'^api/feedback/', FeedbackView.as_view()),
]
if common.DEBUG:
urlpatterns += static(common.MEDIA_URL, document_root=common.MEDIA_ROOT)
urlpatterns += static(common.STATIC_URL, document_root=common.STATIC_ROOT)
我想我已经尝试了所有内容,我在加载MEDIA_URL
和MEDIA_URL
时没有问题
这是我项目结构的截图
答案 0 :(得分:2)
试试这个:STATIC_ROOT = os.path.join(BASE_DIR, '/project/static/')
静态文件可能很棘手,并且有许多原因导致它们无法加载。您说您的媒体文件正在正确加载,因为您引用它们就像MEDIA_ROOT = os.path.join(BASE_DIR, 'django/')
一样。如果您打印该路径(print MEDIA_ROOT
),您的控制台中会出现类似这样的内容:&#34; ThisPC / Documents / Github / django / media&#34;。此路径直接指向您的媒体文件夹,但是当django正在寻找静态根时,它无法找到该文件夹,因为您只是说&#34; project / static&#34;但它应该是&#34; ThisPC / Documents / Github / project / static&#34; (或类似的)。
如果你问为什么你的朋友这样做,那是因为你只有在你进入制作时上传GitHub文件夹并且静态路径是正确的。媒体文件在制作中不会像这样工作。
Fazil Zaid在评论中指出的内容也很重要。在您的urls.py文件中,您有if common.DEBUG:
,通常您会使用if settings.DEBUG:
(对于settings.py文件中的Debug = True
)更改该行或找出common.py是什么以及为什么他用过它。它似乎是一个额外的设置文件。如果您不熟悉该项目,我也不建议使用它。
在将该项目推向生产之前,您需要更改Secret Key
并为静态文件安装White Noise。我希望有所帮助,并且会做到这一点。
P.S。到底是什么?
PINAX_STRIPE_SECRET_KEY = os.environ.get("STRIPE_SECRET_KEY", "sk_test_7dTOnMGX55bNC2yQ4ihqsHuV")
PINAX_STRIPE_PUBLIC_KEY = os.environ.get("STRIPE_PUBLIC_KEY", "pk_test_LutZeiAuAewyQhJuLLUJXdfi")
你还发布了项目的密钥?你知道什么时候它只是一些业余爱好的网站,所以你可以练习它的所有乐趣和游戏,但是当涉及到付款时,你可以被起诉在网上发布这样的东西。如果用户银行帐户详细信息被黑客攻击(并且您提供的所有密码都很容易),则会遇到很大问题。请记住在推送任何在线之前更改所有这些。快乐编码:)
编辑: 试试这个:
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), '/project/static')
或硬编码STATIC_ROOT = users/elitebook/documents/github/project/static/
路径应该是正确的。这绝对是你的问题,或者至少是其中一个主要问题。 Django不知道在哪里查找静态文件。如果不起作用,请复制打印的媒体路径,编辑它,然后将硬编码路径放入设置文件中。这应该是路径:STATIC_ROOT = users/elitebook/documents/github/project/static/
不确定C:/
是否在该部分的前面或者不看媒体根并尝试复制第一部分并编辑第二部分以使其指向静态而不是媒体。当Debug为True并且您的文件仍然没有加载时,您在其他地方遇到了另一个问题。