如何为django模型显示多个图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何为django模型显示多个图像相关的知识,希望对你有一定的参考价值。

这是我的图像模型,我与模型产品绑定

class Image(models.Model):
    name = models.CharField(blank=True,max_length=20)
    product = models.ForeignKey(Product)
    image = models.ImageField(blank=True,null=True)

    def __str__(self):
        return self.name

这是我用来尝试显示图像def类别(request,category_id)的视图:categories = Category.objects.all()images = Image.objects.all()products = Product.objects.all()try :category = Category.objects.get(id = category_id),但Category.DoesNotExist:category = None;

    template = loader.get_template('index.html')
    context = {
        'category': category,
        'categories': categories,
        'images': images,
        'products': products
    }
    return HttpResponse(template.render(context,request))

这是html

 {% for image in images %}
            <a href="#" class="image"><img src="{{ image.url }}"></a>
 {% endfor %}

我知道这绝对不行,但至少这段代码显示页面而不是错误,所以我一直在使用它,任何人都可以指出我正确的方向来dipslay每个产品相关的每个图像。谢谢!

答案

你可以试试这个:

  {% for product in products%}
  <p> {{product.name}}  </p>
    {% for simage in product.image_set.all %}
      {% if simage.image%}
        <a href="#" class="image"><img src="{{ simage.image.url }}"></a>
      {% endif %} 
    {% endfor %}
  {% endfor %}

以上是关于如何为django模型显示多个图像的主要内容,如果未能解决你的问题,请参考以下文章

django:DetailView 如何为两个模型工作或基于类的视图如何为两个模型工作?

如何为图像实现 DiffUtil

Solr Highlighting:如何为同一字段请求多个片段长度?

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?

如何为片段设置观察者

如何为其他模板的表单显示和提交编写基于 Django 类的视图?