所以在过去的一个小时里,我一直在碰壁,似乎无法弄清楚为什么在我的模板被渲染时没有静态媒体(CSS、图像、JS 等)。有人可以帮我找出我需要进行调整的原因吗?以下是来自 Settings.py、Index.html 和样式表的片段,如果需要更多信息,请告诉我。
我的静态文件位于以下目录中:/djangoproject/website/static
Settings.py - Located /djangoproject/djangoprojectname/
STATIC_ROOT = os.path.normpath(os.path.join(PROJECT_ROOT,
"/static/"))
STATIC_URL = '../website/static/'
这是我的 index.html 中的一个片段,它应该使用 {{ STATIC_URL }} 调用 css 样式表
Index.html - Location /djangoproject/website/templates/
<link rel="stylesheet" href="{{ STATIC_URL }}css/style.css">
CSS 样式表的位置
style.css - Location /djangoproject/website/static/css/