我正在创建博客应用程序,我想显示上传到单个博客文章的所有图像。这是我的 Models.py:class Post(models.Model): title = models.CharField(max_length=100) content = RichTextField(blank=True, null=True)class PostImage(models.Model): post = models.ForeignKey(Post, default=None, on_delete=models.CASCADE, related_name='postimages') image = models.ImageField(upload_to='gallery/')Views.pyclass PostGalleryView(DetailView): model = Post template_name = 'blog/gallery.html' context_object_name = 'photos'在模板中,如果我放在那里{{ photos.postimages }},那么它会显示在页面上:blog.PostImage.None,即使这 2 个图像已上传到特定的博客文章。{{ photos.postimages.count }}显示数字 2。如果我尝试循环photos.postimages它会抛出错误:“RelatedManager”对象不可迭代。知道如何访问模板中的 PostImage 模型吗?
1 回答
阿波罗的战车
TA贡献1862条经验 获得超6个赞
尝试在模板中使用循环,例如all:
{% for photo in photos.postimages.all %}
{{ photo.image }}
{% endfor %}
添加回答
举报
0/150
提交
取消