我们正在升级到 django 4.2。然而,我们在运行 django 项目时遇到了上述问题。我们已经在 settings.py 中设置了新的存储方式,即
STORAGES = {
"staticfiles": {"BACKEND": "custom.core.storage.GzipManifestStaticfilesStorage"},
"default": {"BACKEND": "django.core.files.storage.FileSystemStorage"},
}
但它不起作用并在运行项目时出现上述错误。但是,当我们手动去删除
DEFAULT_FILE_STORAGE
时
张