我想知道如何在sorl-thumbnail
我的代码有错误:
无法解析余数:'{%'来自'{%'
{% load thumbnail %}
{% thumbnail {% static 'img/logo.png' %} "100x80" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
答案 0 :(得分:0)
您无法在{% static %}
标记内使用{% thumbnail %}
标记。通常,您不能在任何其他代码中包含任何代码。
确保TEMPLATE_CONTEXT_PROCESSORS
文件中的settings.py
变量包含'django.core.context_processors.static'
并尝试
{% load thumbnail %}
{% thumbnail STATIC_URL|add:'img/logo.png' "100x80" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}