Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我通过views.py传递一个变量
return render_to_response(html, {'file': file})
进入我的html
<img src="{% static "{{file}}" %}" alt="My image"/> working
但是该文件在我的 html 中没有响应。有人可以帮帮我吗。
代替
{% static "{{file}}" %}
写吧
{% static file %}