Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个 django 应用程序,需要部署我正在努力部署的 css 样式表,例如 base_site.css。我目前正在分解一个工作正常的“索引”url,但需要链接 css 表-我的设置如下:
3) 样式表内容示例:
<link rel="stylesheet" type="text/css" href="Tom/base.css" />
谢谢你的帮助。
在开发模式下,Django 很乐意为您提供静态资源。因此,对于您的示例,您的 settings.py 中会有类似的内容:
STATIC_ROOT = 'path-to-your-app/static' STATIC_URL = '/static/'
然后您的目录结构将如下所示:
static/ Tom/ base.css
并将标签的href更改为:
/static/Tom/base.css
Django 有关于这个主题的非常好的文档,花一些时间阅读它们:
https://docs.djangoproject.com/en/1.4/howto/static-files/