gpt4 book ai didi

python - 如何在 Django 样式模板中收集子评论?

转载 作者:太空宇宙 更新时间:2023-11-03 18:50:55 26 4
gpt4 key购买 nike

我正在尝试制作一个自定义评论引擎,但我不知道如何显示嵌套评论。我使用“回复”ForeignKey 来跟踪它所引用的评论。我正在使用级别字段来查看它是什么“级别”评论。

模型.py:

class Post(models.Model)
name = models.CharField()
text = models.TextFiled()

class Comment(models.Model)
o_post = models.ForeignKey(Post)
reply = models.ForeignKey('self', blank=True, null=True)
level = models.IntegerField(default=1)
#others like content,author, created etc...

View .py

def PostComments(request,postpk):
post = Post.objects.get(pk=postpk)
comments = Comment.objects.filter(o_post=post).order_by('-created')
children = Comment.objects.filter(o_post=post).filter(level__gte=2)
context = {'comments':comments,'post':post,'children':children}
return render_response(stuff)

这是我尝试显示所有内容的方法。所有 1 级评论均可见。child.reply 返回一个 id,comment.pk 也返回一个 id,它们都匹配 41

{% for comment in comments %}
{{comment.content}}
{% for child in children %}
{%if child.reply == comment.pk %}
{{child.content}}
{% endif %}
{% endfor %}
{% endfor %}

无论我如何构造 for 和 if 循环,我都不知道如何让它工作。谢谢

最佳答案

尝试比较实体,而不是pk:

{% if child.reply == comment %}

关于python - 如何在 Django 样式模板中收集子评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18392079/

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