gogobody
V2EX  ›  Python

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

By gogobody at 2017 年 4 月 8 日 · 3941 次点击

本人新入坑的小白,如有不对的地方请包涵~~~!
在 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,不知道应该如何实现。希望大家指教~!

4 条回复  •  2017-04-09 10:14:48 +08:00
onlyice
   1
onlyice  
   2017 年 4 月 8 日
回复不能用 Markdown ,代码比较难看:

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

参考: https://peewee.readthedocs.io/en/latest/peewee/querying.html
gogobody
   2
gogobody  
OP
   2017 年 4 月 8 日 via Android
@onlyice 感谢回复,但是我想先构建这样的表, peewee 里好像没有 unique_together 只能设置单独的 unique. 然后是,查询结果应该是一个 id 的列表,上面得到是一个 object 。不知道能不能实现
onlyice
   3
onlyice  
   2017 年 4 月 9 日   ❤️ 1
@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
   4
gogobody  
OP
   2017 年 4 月 9 日 via Android   ❤️ 1
@onlyice 感谢!!!关于 unique_together 我 google 到了用法相似的 indexes 写在 meta 里面。已经解决问题啦,感谢耐心的大兄弟!
推荐学习书目
› Learn Python the Hard Way
Python Sites
› PyPI - Python Package Index
› http://diveintopython.org/toc/index.html
› Pocoo
值得关注的项目
› PyPy
› Celery
› Jinja2
› Read the Docs
› gevent
› pyenv
› virtualenv
› Stackless Python
› Beautiful Soup
› 结巴中文分词
› Green Unicorn
› Sentry
› Shovel
› Pyflakes
› pytest
Python 编程
› pep8 Checker
Styles
› PEP 8
› Google Python Style Guide
› Code Style from The Hitchhiker's Guide
© 2026 V2EX · 26ms · 3.9.8.5