我正在尝试在 django 模板中显示图像
.html 文件
{% for imge in q_i %}
<img src="{{ MEDIA_URL }}/{{ imge.0 }}" width="80" height="80" />
{% endfor %}
视图.py
#...#
Q_I = []
for q in s_q:
img = Images.objects.get(id=1)
img_path=img.imgfile
Q_I.append(img_path)
return render_to_response('1.html',{'q_i':Q_I},context_instance=RequestContext(request))
但是这段代码不起作用。我做错了吗?提前致谢