本人新入坑的小白,如有不对的地方请包涵~~~!
在 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,不知道应该如何实现。希望大家指教~!
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 |
2
gogobody OP @onlyice 感谢回复,但是我想先构建这样的表, peewee 里好像没有 unique_together 只能设置单独的 unique. 然后是,查询结果应该是一个 id 的列表,上面得到是一个 object 。不知道能不能实现
|
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 |
4
gogobody OP @onlyice 感谢!!!关于 unique_together 我 google 到了用法相似的 indexes 写在 meta 里面。已经解决问题啦,感谢耐心的大兄弟!
|