得到一个名为 django_server 的 Django 项目。当我跑步时python manage.py runserver该页面按预期显示然后,如果我跑gunicorn django_server.wsgi:application --bind 0.0.0.0:8000页面显示没有样式检查控制台,可以看到 .css 和 .js 文件都出现以下错误来自“ http://0.0.0.0:8000/static/....css ”的资源由于 MIME 类型(“text/html”)不匹配(X-Content-Type-Options:nosniff)而被阻止。在执行 gunicorn 命令的终端中,可以读取NOT FOUND: /static/rest_framework/css/bootstrap.min.cssNOT FOUND: /static/rest_framework/css/bootstrap-tweaks.min.css...在 settings.py 我提到BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))STATIC_URL = '/static/'STATIC_ROOT = os.path.join(BASE_DIR,'static')
1 回答
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
你需要运行python manage.py collectstatic。
在你settings.py身上,我建议你使用whitenoise来提供你的文件。
1) pip install whitenoise
2)添加STATICFILES_STORAGEsettings.py
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
3)添加到你MIDDLEWARE的 settings.py
`MIDDLEWARE = [
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.middleware.security.SecurityMiddleware',
...
]
添加回答
举报
0/150
提交
取消