模块 "whitenoise.storage" 没有定义 "CompressedMainfestStaticFilesStorage" attribute/class

Module "whitenoise.storage" does not define a "CompressedMainfestStaticFilesStorage" attribute/class

我正在使用 whitenoise 在我的 Django 项目中提供静态文件。这是 settings.py

STATIC_URL = 'data/static/'
SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'data/static/'),
]
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

我的静态文件在 data/static 文件夹中。当我在评论此行后尝试 运行 python manage.py collectstatic 时:

STATICFILES_STORAGE = 'whitenoise.storage.CompressedMainfestStaticFilesStorage'

运行没问题。但是当我在取消注释后尝试 运行 collectstatic 时,它会出现上述错误。任何人都知道为什么这是一个错误?

以下是应用程序和中间件:

INSTALLED_APPS = [
    'admin_interface',
    'colorfield',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'whitenoise.runserver_nostatic',
    'django.contrib.staticfiles',
    'app',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

而且我已经尝试将 Debug 设置为 TrueFalse 但是在打开压缩的情况下这两种情况都不起作用。

您的 class 名称有错字。它是 CompressedManifestStaticFilesStorage,而不是 Mainfest。如果您的 IDE.

中不支持此类补全,我建议始终从文档中复制粘贴