django 处理静态文件
Posted pythonclub
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django 处理静态文件相关的知识,希望对你有一定的参考价值。
settings:
STATIC_URL = ‘static/‘
STATIC_ROOT = os.path.join(BASE_DIR, ‘static‘)
urls:
from django.conf import settings
from django.conf.urls.static import static
末尾加
+ static(settings.STATIC_URL, document_root = settings.STATIC_ROOT)
在模板里:
<script type="text/javascript" src="/static/js/jquery.js"></script>
以上是关于django 处理静态文件的主要内容,如果未能解决你的问题,请参考以下文章