V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
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
gogobody
V2EX  ›  Python

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

  •  
  •   gogobody · 2017-04-08 02:41:55 +08:00 · 2991 次点击
    这是一个创建于 2568 天前的主题,其中的信息可能已经有所发展或是发生改变。

    本人新入坑的小白,如有不对的地方请包涵~~~!
    在 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-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
        2
    gogobody  
    OP
       2017-04-08 11:57:00 +08:00 via Android
    @onlyice 感谢回复,但是我想先构建这样的表, peewee 里好像没有 unique_together 只能设置单独的 unique. 然后是,查询结果应该是一个 id 的列表,上面得到是一个 object 。不知道能不能实现
    onlyice
        3
    onlyice  
       2017-04-09 09:00:51 +08:00   ❤️ 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-04-09 10:14:48 +08:00 via Android   ❤️ 1
    @onlyice 感谢!!!关于 unique_together 我 google 到了用法相似的 indexes 写在 meta 里面。已经解决问题啦,感谢耐心的大兄弟!
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5321 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 06:54 · PVG 14:54 · LAX 23:54 · JFK 02:54
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.