gpt4 book ai didi

python - 如何从 django 中的表中检索评论回复

转载 作者:行者123 更新时间:2023-12-01 06:26:25 24 4
gpt4 key购买 nike

我正在做博客API的评论部分。我无法获得回复,但我可以获得评论。

Python 模块:Django:

class Comment(models.Model):
author = models.ForeignKey(get_user_model(), on_delete=models.CASCADE)
comment = models.TextField()
created_at = models.DateTimeField(auto_now_add=True)
parent = models.ForeignKey(
'self', related_name='reply', null=True, blank=True,
on_delete=models.CASCADE)

Database table for above shown Django code

上面是表格,显示了使用 Django Comment 模型代码存储的注释。

我的任务:我有父评论的 ID。我必须导出红色框的其余部分。

欢迎任何想法:想法、SQL 脚本或 Django 查询

最佳答案

您可以在名为“replies”的模型上添加一个属性,它将给出对这些评论的所有回复。

class Comment(models.Model):
author = models.ForeignKey(get_user_model(), on_delete=models.CASCADE)
comment = models.TextField()
created_at = models.DateTimeField(auto_now_add=True)
parent = models.ForeignKey(
'self', related_name='reply', null=True, blank=True,
on_delete=models.CASCADE)

@property
def replies(self):
return Comment.objects.filter(parent_id=self.id)

因此,我们假设您有一条家长评论,并且您需要对该评论的所有回复

parent = Comment.objects.get(id=1)
# Replies on this comment is.
print(parent.replies) # It will have only one comment in array with id=9

现在,如果您需要回复id=9的评论

parent.replies[0].replies # It will give comments with id 10 and 11

更新:如果您直接需要所有嵌套回复,您可以在删除对象时执行类似于 Django-admin 的操作。它首先向您显示所有受影响的对象

from django.contrib.admin.utils 
collector = NestedObjects(using='default')
collector.collect(parents)
print(collector.data[parents[0].__class__]) # It will print all nested objects comments.

关于python - 如何从 django 中的表中检索评论回复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60120573/

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