Django中需要的注意事项

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" %}"

你可能感兴趣的:(Django中需要的注意事项)