Python 内置服务器未加载 CSS



当我运行服务器时,Django 管理员缺少 css。Web控制台说样式表未加载,因为它的MIME类型"application/x-css"不是"text/css"。这是我 settings.py 文件

mysite 项目的 Django 设置。

DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
    # ('Your Name', 'your_email@example.com'),
)
MANAGERS = ADMINS
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', 
        'NAME': 'C:/djangorevision/mysite/sqlite3.db',                       database 
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                   
        'PORT': '',                     
    }
}
ALLOWED_HOSTS = []

TIME_ZONE = 'America/Chicago'

LANGUAGE_CODE = 'en-us'
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale.
USE_L10N = True

USE_TZ = True
MEDIA_ROOT = ''
MEDIA_URL = ''

STATIC_ROOT = 'C:/djangorevision/mysite/static'
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
)
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
# Make this unique, and don't share it with anybody.
SECRET_KEY = '*4#u_xz-+7cp-x-)w(o*sr1&1$^fa409_d@7!&z%_(93u=@s=o'
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
#     'django.template.loaders.eggs.Loader',
)
MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    # Uncomment the next line for simple clickjacking protection:
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'mysite.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'mysite.wsgi.application'
TEMPLATE_DIRS = (
  )
INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
     'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'polls'

LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'filters': {
        'require_debug_false': {
        }
    },
    'handlers': {
        'mail_admins': {
            'level': 'ERROR',
            'filters': ['require_debug_false'],
            'class': 'django.utils.log.AdminEmailHandler'
        }
    },
    'loggers': {
        'django.request': {
            'handlers': ['mail_admins'],
            'level': 'ERROR',
            'propagate': True,`enter code here`
        },
    }
}

我刚刚遇到了同样的问题。看来你对Dreamweaver的看法是对的。将上面提到的字符串添加到 settings.py 对我没有帮助。

我已经在注册表编辑器上运行了.css搜索并更改了最可疑的注册表项/记录

  1. 可能与将.css文件视为应用程序/x-CSS 类型有关
  2. 可能与将文件扩展名.css与应用程序(尤其是 Dreamweaver)打开相关联有关。

花了两次迭代,我不能确定哪一个是正确的镜头,因为它可能需要一些时间来更新一些缓存等。

虽然我在两个位置更改了它:

  1. HKEY_LOCAL_MACHINE\软件\类\.css
  2. HKEY_CLASSES_ROOT\.css

我重命名(通过添加前导"--",以便在必要时可以恢复)与.css与所有应用程序(包括 Dreamweaver、记事本等)关联的文件相关的键/记录,并将.css文件声明为 application/x-css 类型。

之后,问题得到解决,Django CSS样式按预期正确应用。

有点晚了,但为了完整起见,这需要放在这里。

我在一个开发系统上也遇到了这个奇怪的错误(我没有在同一项目的其他开发系统上得到它)。也许这与Dreamweaver(可以打开css文件)安装在此系统上的事实有关?

无论如何,为了解决这个问题,我在 settings.py 中添加了以下内容:

导入哑剧类型mimetypes.add_type("text/css", ".css", True)

这将在 mimetypes 列表中为 css 添加(如果已经存在,则替换)正确的 mimetype。

如果您不想将其放入 settings.py 中,请将其添加到设置包的__init__.py文件中。

在设置文件中设置 DEBUG 可解决此问题:

DEBUG = True

相关内容

  • 没有找到相关文章

最新更新