使用 Django 和 django-imagekit 在对象列表中显示缩略图
如何显示我的项目列表的缩略图......是否可以仅显示特定缩略图或随机缩略图?到目前为止,我的模板中有这样的内容:
{% for p in item.images.all %}
{{ p.get_thumbnail.url }}
{% endfor %}
How do I display thumbnails for my item list....also is it possible to display just a specific thumbnail or a random thumbnail? So far I have this in my template:
{% for p in item.images.all %}
{{ p.get_thumbnail.url }}
{% endfor %}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要显示图像,您至少需要使用
标签:
To display the image, you'll at least need to use an
<img>
tag:刚刚得到问题的答案:
Just got an answer to the problem: