博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django part 6 ---Static File
阅读量:6822 次
发布时间:2019-06-26

本文共 606 字,大约阅读时间需要 2 分钟。

  hot3.png

方法一 模板加载
首先把静态图像放在 polls/static/polls/images/background.png
其次把css文件放在 polls/static/polls/style.css
polls.static.style.cssli a { color: green}body { background: white url("images/p02.png") no-repeat right top}

模板中载入

polls.templates.polls.index.html    {% load staticfiles %}    
   
    index 

效果:字体变绿色了,右边载入了一幅图

 方法二: settings.py加设置
mysite.settings.py STATIC_URL = '/static/'STATICFILES_DIRS = (    os.path.join(BASE_DIR, "static"),)

模板文件中加载

polls.templates.polls.index.html    
   
    index

二种方法都行,一个是绝对路径调用,另一个则是利用模板匹配

至此 django tutorial 全部讲完了

转载于:https://my.oschina.net/hding/blog/478135

你可能感兴趣的文章