静态文件,常用在head中,可动态的去检索settings里面的STATIC_URL = '/static/',然后做拼接settings.py中 STATIC_URL = '/static9/' # 9只是为了方便说明问题 STATICFILES_DIRS = [ os.path.join(BASE_DIR,'static2'), os.path.join(BASE_DIR,'static0'), os.path.join(BASE_DIR,'static1'), ]html.py中 {% l…