标签:url base 不同 路径 资源 dir 注意 jquer script
STATIC_URL = ‘/static/‘ #别名
STATIC_ROOT=os.path.join(BASE_DIR,‘app01/static‘) #绝对路径
STATIC_URL = ‘/static/‘
STATICFILES_DIRS = (
( os.path.join(BASE_DIR, "statics")),
)
注意2(statics文件夹写在不同的app下,静态文件的调用):
STATIC_URL = ‘/static/‘
STATICFILES_DIRS = (
(‘demo_statics‘,os.path.join(BASE_DIR, "statics")),
)
<script src="/static/demo_statics/jquery-1.8.2.min.js"></script>
标签:url base 不同 路径 资源 dir 注意 jquer script
原文地址:http://www.cnblogs.com/tiantao36/p/7499891.html