过滤 for 循环内的对象并将其放入列表中

发布于 2024-12-03 12:27:26 字数 311 浏览 0 评论 0原文

因此,我试图从某个个人资料的收藏标签中获取最新的帖子,但遇到了一些问题。这就是我想做的:

tags = profile.fav_tags.all()
for tag in tags: 
    s1 |= Post.objects.filter(tags__name__iexact=tag.name).distinct().order_by('-created_date')[:15]
results = chain(s1)

当我运行这个时,我得到:w 异常类型:UnboundLocalError 异常值:赋值之前引用了局部变量“s1”

So I'm trying to get the most recent Posts from the favourited tags of a certain profile and I'm having some problems with it. That's what i'm trying to do:

tags = profile.fav_tags.all()
for tag in tags: 
    s1 |= Post.objects.filter(tags__name__iexact=tag.name).distinct().order_by('-created_date')[:15]
results = chain(s1)

When i run this i get:w
Exception Type: UnboundLocalError
Exception Value: local variable 's1' referenced before assignment

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

也只是曾经 2024-12-10 12:27:26

您需要在循环之前初始化 s1 变量,可能使用空集:

s1 = set()
for tag in tags:
    # ...

You need to initialize your s1 variable prior to the loop, probably with empty set:

s1 = set()
for tag in tags:
    # ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文