django Python内置服务器不加载CSS

js5cn81o  于 2023-05-01  发布在  Go
关注(0)|答案(3)|浏览(151)

当我运行服务器时django管理员缺少css.Web控制台显示样式表没有加载,因为它的MIME类型“application/x-css”不是“text/css”。这是我的www. example www.example.com 文件

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`
        },
    }
}
juud5qan

juud5qan1#

我也遇到了同样的问题。看来你对Dreamweaver的看法是对的。将上述字符串添加到www. example中 www.example.com 没有帮助我。
我已经运行搜索.css在regedit和改变了大多数可疑的注册表项/记录
1.可能与治疗有关。css文件作为application/x-css类型
1.可能与关联有关。css文件扩展名,以打开应用程序,特别是Dreamweaver。
它花了我两次迭代,我不能确定哪一个是正确的镜头,因为它可能需要一些时间来更新一些缓存,等等。
不过我改了两个地方:

  1. HKEY_LOCAL_MACHINE\SOFTWARE\Classes\。社会科学委员会
  2. HKEY_CLASSES_ROOT\。社会科学委员会
    我重命名(通过添加前导'--',以便在必要时可以恢复)键/记录相关的.css文件与所有应用程序(包括Dreamweaver,记事本等)的关联。)并将.css文件声明为application/x-css类型。
    之后,问题得到解决,Django CSS样式被正确应用,正如预期的那样。
u5rb5r59

u5rb5r592#

答案有点晚,但为了完整起见,需要在这里说明。
我在一个开发系统上也得到了这个奇怪的错误(我在同一项目的其他开发系统上没有得到它)。也许这与这个系统上安装了Dreamweaver(可以打开CSS文件)有关?
无论如何,为了解决这个问题,我在我的www.example中添加了以下内容。 www.example.com

import mimetypes
mimetypes.add_type("text/css", ".css", True)

这将在mimetypes列表中添加(如果已经存在,则替换)正确的css mimetype。
如果你不想把它放在你的www.example。 www.example.com , add it to the __init__.py file of yout settings package.

ctehm74n

ctehm74n3#

在设置文件中设置DEBUG修复此问题:

DEBUG = True

相关问题