参考:https://code.ziqiangxuetang.com/django/django-static-files.html
1 确保setting.py:INSTALLED_APPS里有'django.contrib.staticfiles',
2
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)
参考:https://code.ziqiangxuetang.com/django/django-static-files.html
1 确保setting.py:INSTALLED_APPS里有'django.contrib.staticfiles',
2
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)