如何在我的django应用中显示收藏夹图标?
我只想将其favicon.ico
放入我的staticfiles
目录中,然后将其显示在我的应用中。
我该怎么做?
我已将该favicon.ico
文件放置在staticfiles
目录中,但未显示,并且在日志中看到了该文件:
127.0.0.1 - - [21/Feb/2014 10:10:53] "GET /favicon.ico HTTP/1.1" 404 -
如果我去http://localhost:8000/static/favicon.ico,我可以看到该图标。
回答:
如果你随处都有基本模板或标头模板,为什么不在基本HTML中添加夹图标呢?
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
以上是 如何在我的django应用中显示收藏夹图标? 的全部内容, 来源链接: utcz.com/qa/405365.html