用户collection,我是这么设计的:
User { uid: xx, name: xxx, description: xxxx, follow: ["uid1","uid2","uid3",...] }
为了列出某个用户follow的所有人列表,我该如何写查询语句呢?
<uid1, name1, description1> <uid2, name2, description2> ...
黄舟2017-04-21 11:18:39
不要只把mongodb當作一個schemeless的sql資料庫,mongodb是沒有子查詢、跨表查詢這個概念的。
按照你的描述,如果你想要取得某個使用者follow的所有人的詳細資料列表,一種做法是把這些使用者的所有資訊都存到User裡面:
User { uid: xx, name: xxx, description: xxxx, follow: ["uid1": {'name': 'xxx', 'description': 'desc1'},"uid2": {'name': 'zzz', 'description': 'desc2'},...] }
或你使用二次查詢,在程式碼裡面再查一次
db.User.find({'uid':{'$in': [uid1, uid2, uid3]}});