Django - 显示分配给帖子的所有图像

我正在创建博客应用程序,我想显示上传到单个博客文章的所有图像。


这是我的 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.py


class 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 模型吗?


蓝山帝景
浏览 76回答 1
1回答

阿波罗的战车

尝试在模板中使用循环,例如all:{% for photo in photos.postimages.all %}    {{ photo.image }}{% endfor %}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python