gpt4 book ai didi

django - 如何缩略图静态文件?

转载 作者:行者123 更新时间:2023-12-04 00:52:58 25 4
gpt4 key购买 nike

我想用 sorl 缩略图调整我的静态文件的大小,但它不起作用

这是我的代码

{% if not new.photo %}

{% with path="{{STATIC_URL}}/images/empty-news.jpg" %}
{% thumbnail path "80x80" crop="center" as im %}
<a href="#" class="image"><img alt="" src="{{im.url}}" class="frame2"></a>
{% endthumbnail %}
{% endwith %}

{% else %}
{% thumbnail new.photo "80x80" crop="center" as im %}
<a href="{% url news_detail new.slug %}" class="image">
<img alt="" src="{{im.url}}" class="frame2"></a>
{% endthumbnail %}
{% endif %}

如果我有图像,它会显示图像,但是当我没有图像时,我不能使用默认图像,因为缩略图不起作用

最佳答案

对我有用的丑陋选项,传递您通常传递给 static 的路径模板标签(请注意,它采用 http 协议(protocol),因此可以改进):

{% with 'http://'|add:request.get_host|add:STATIC_URL|add:image_path as path %}
{% thumbnail path "720x306" crop="center" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% endthumbnail %}
{% endwith %}

这是通过建立静态图像的绝对路径来工作的。

关于django - 如何缩略图静态文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12956788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com