请教如何用 peewee 实现类似 django ORM 的这种查询效果

2017-04-08 02:41:55 +08:00
 gogobody

本人新入坑的小白,如有不对的地方请包涵~~~!
在 django 中代码如下:
模型定义:

class Friends(models.Model):
    first_id = models.IntegerField()
    second_id = models.IntegerField()

    class Meta:
        unique_together=('first_id', 'second_id',)

查询语句如下:

    friend_list_info = []
    friend_list1 = Friends.objects.filter(first_id=Id).values_list('second_id', flat=True)
    friend_list2 = Friends.objects.filter(second_id=Id).values_list('first_id', flat=True)
    friend_list = list(friend_list1) + list(friend_list2)

意思是建立一个好友列表, 2 个人之间的关系是唯一的。通过输入的 Id ,查询出对应的好友的 Id 列表。 现在学习 sanic 框架用的 peewee,不知道应该如何实现。希望大家指教~!

3097 次点击
所在节点    Python
4 条回复
onlyice
2017-04-08 09:05:01 +08:00
回复不能用 Markdown ,代码比较难看:

friend_list = Friends.select(Friends.second_id).where(Friends.first_id=Id)

参考: https://peewee.readthedocs.io/en/latest/peewee/querying.html
gogobody
2017-04-08 11:57:00 +08:00
@onlyice 感谢回复,但是我想先构建这样的表, peewee 里好像没有 unique_together 只能设置单独的 unique. 然后是,查询结果应该是一个 id 的列表,上面得到是一个 object 。不知道能不能实现
onlyice
2017-04-09 09:00:51 +08:00
@gogobody

1. peewee 没有 unique_together ,可以考虑直接用 primary_key = ('first_id', 'second_id'),需要放在 class Meta 里(具体查下文档)

2. 得到 object 是正常的, ORM 框架就是这种思路。取法: for f in friend_list: f.first_id
gogobody
2017-04-09 10:14:48 +08:00
@onlyice 感谢!!!关于 unique_together 我 google 到了用法相似的 indexes 写在 meta 里面。已经解决问题啦,感谢耐心的大兄弟!

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/353370

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX