将我的帖子包含在 Django 中的关注者帖子中
Posted
技术标签:
【中文标题】将我的帖子包含在 Django 中的关注者帖子中【英文标题】:Include my post with followers post in Django 【发布时间】:2021-06-12 17:50:17 【问题描述】:如何将我的帖子包含在关注者的帖子中
def get(self, request, *args, **kwargs):
logged_in_user = request.user
video = Video.objects.filter(
author__follow__in=[logged_in_user.id]
).order_by('-created_date')
【问题讨论】:
【参考方案1】:您可以使用Q
objects [Django-doc] 来表达析取:
def get(self, request, *args, **kwargs):
video = Video.objects.filter(
Q(author__follow=request.user) | Q(author=request.user)
).order_by('-created_date')
【讨论】:
以上是关于将我的帖子包含在 Django 中的关注者帖子中的主要内容,如果未能解决你的问题,请参考以下文章
如何在用户个人资料页面中将用户发布的博客显示为 Django 3 中的我的帖子列表部分?