我想通过在Django模板文件“ index.html”中使用img src标签显示图像:
templates/
index.html
static/
img/
puzzle.png
将图像添加到静态图像后,我收集了静态图像,并在页面顶部添加了
{% load static %}
我的图片标签是:
<img src="{% static 'img/puzzle.png' %}">
,但是图像未显示在我的页面上。我该如何解决?
答案 0 :(得分:0)
按如下所示更改目录结构,
yourapp/
├── templates/
│ └── index.html
└── static/
└── yourapp
└── puzzle.png
然后在模板中
{% load static %}
<img src="{% static 'yourapp/puzzle.png' %}">