如何让<img src="{% static " {{request_filename}}"="" %}"="" alt="My image"/>正常工作

时间:2013-04-06 09:06:41

标签: html django image

所以我通过views.py传递一个变量

return  render_to_response(html, {'file': file})

进入我的HTML

<img src="{% static "{{file}}" %}" alt="My image"/> working

但是我的html文件没有响应。有人可以帮助我。

1 个答案:

答案 0 :(得分:1)

而不是

{% static "{{file}}" %}

写一下

{% static file %}