配置步骤:
1.首先在应用下面创建static目录
2.将静态资源拷贝进去 3.在应用的settings.py文件中添加import osBASE_PATH = os.path.dirname(os.path.abspath(__file__))BASE_PATH = os.path.join(BASE_PATH, '../')
# 静态资源目录STATICFILES_DIRS = ( os.path.join(BASE_PATH, 'static/'),)
STATIC_URL = '/static/'
4.修改html页面引入js/css/image的路径
5.配置完成