克隆 Django 项目后无法加载静态文件

Can't load static files after cloning a Django project

我知道这个问题已经被问了很多,但我真的不明白为什么我的静态文件无法加载。我从朋友那里克隆了一个项目(不知道这是否与它有任何关系),当尝试 link 到静态文件时,我在 Chrome 上的调试控制台中不断收到 404 错误。 =15=]

header 在我的 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_URLMEDIA_URL

没有问题

这是我的项目结构的屏幕截图

试试这个:STATIC_ROOT = os.path.join(BASE_DIR, '/project/static/')

静态文件可能很棘手,它们无法加载的原因有很多。你说你的媒体文件加载正确,这是因为你像 MEDIA_ROOT = os.path.join(BASE_DIR, 'django/') 一样引用它们。如果您要打印该路径 (print MEDIA_ROOT),您的控制台中会出现这样的内容:"ThisPC/Documents/Github/django/media"。此路径直接指向您的媒体文件夹,但是当 django 正在寻找静态根时,它不会找到该文件夹​​,因为您只说 "project/static" 但它应该是 "ThisPC/Documents/Github/project/static" (或类似于此)。

如果你问你的朋友为什么这样做,那是因为你在生产时只上传了 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") 还有你把项目秘钥也贴出来了?你知道什么时候它只是一些爱好网站,所以你可以练习它的所有乐趣和游戏,但是当涉及到付款时,你可能会因为在网上发布这样的东西而被起诉。如果用户的银行帐户详细信息遭到黑客攻击(使用您提供的所有密码这很容易),您将面临巨大的问题。请记住在在线推送任何内容之前更改所有这些。快乐编码:)

Edit: Try this one: STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), '/project/static') or hardcoded STATIC_ROOT = users/elitebook/documents/github/project/static/

路径应该是正确的。那绝对是您的问题或至少是主要问题之一。 Django 不知道去哪里寻找静态文件。如果它不起作用,请复制打印的媒体路径,对其进行编辑,然后将硬编码路径放入您的设置文件中。这应该是路径:STATIC_ROOT = users/elitebook/documents/github/project/static/ 不确定 C:/ 是否在该部分前面或不查看媒体根并尝试复制第一部分并编辑第二部分,使其指向静态而不是媒体。当 Debug 为 True 而你的文件仍然没有加载时,你在其他地方遇到了另一个问题。