Django:长对象属性错误

发布于 2024-11-28 21:25:46 字数 611 浏览 0 评论 0原文

这是我对“长”对象的第一次介绍,我在 Django 文档中没有找到太多有关查询集和长对象的信息。长的物体。我正在尝试将两个不同的查询加入到一个列表中,我可以向每个用户发送电子邮件。

有两个问题 - 这是加入这些查询的正确方法吗?如果是这样,如何访问 profile.user.email 属性而不遇到此长对象错误?

email_list = []
for user in request.user.get_profile().followers.all():
    email_list.append(user)


for profile in Profile.objects.filter(city=request.user.get_profile().city.id):    
    if not profile.user.id in email_list:
        print type(profile.user.id)
        email_list.append(profile.user.id)

错误:

AttributeError: 'long' object has no attribute 'email'

This is my first introduction to 'Long' Objects, and I haven't found much in the Django docs on Querysets & long objects. I am trying to join two different queries into a list which I can email each user.

Two questions - is this the proper way to join these queries? If so, how do I access the profile.user.email attribute without hitting this long object error?

email_list = []
for user in request.user.get_profile().followers.all():
    email_list.append(user)


for profile in Profile.objects.filter(city=request.user.get_profile().city.id):    
    if not profile.user.id in email_list:
        print type(profile.user.id)
        email_list.append(profile.user.id)

Error:

AttributeError: 'long' object has no attribute 'email'

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

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

发布评论

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

评论(1

放肆 2024-12-05 21:25:46

您要向列表中添加“长”对象(它们只是数字)而不是实际的 User 实例:

email_list.append(profile.user.id)

它应该是:

email_list.append(profile.user)

You are adding to the list 'long' objects (they are just numbers) instead of actual User instances:

email_list.append(profile.user.id)

it should be:

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