1:引入js/css/img等静态文件的时候要在settings.py
中添加STATIC_ROOT= os.path.join(BASE_DIR,"static/")
注释:设置静态目录文件位置在根目录下的/static/中
html中引用
{%load staticfiles %}
src="{%static "js/jquery-2.1.1.min.js" %}"
1:引入js/css/img等静态文件的时候要在settings.py
中添加STATIC_ROOT= os.path.join(BASE_DIR,"static/")
注释:设置静态目录文件位置在根目录下的/static/中
html中引用
{%load staticfiles %}
src="{%static "js/jquery-2.1.1.min.js" %}"