从关系中解析获取对象

时间:2016-07-18 22:55:05

标签: ios swift parse-platform

我试图获取当前用户成员的群组。

我尝试了很多东西,但解析后返回null。

let innerQuery = PFUser.query()
let currentUser = PFUser.currentUser()
innerQuery?.whereKey("objectId", containedIn: [currentUser!.objectId!])
let query = PFQuery(className: "Group")
query.orderByDescending("updatedAt")
query.whereKey("members", matchesQuery: innerQuery!) 

query.findObjectsInBackgroundWithBlock { (groups, error) in
            print(error)
            print(groups)
        }

1 个答案:

答案 0 :(得分:0)

尝试完全摆脱内部查询并使用     query.whereKey(" members",equalTo:PFUser.currentUser()!。objectId!)

假设您要在成员类中查询当前用户的objectId。使用内部查询

删除这两行