解析:检索用户处于关系中的所有对象
Parse: Retrive all Objects where user is in a relation
我有一个 Parse 对象 Event
,它包含一个键 attendees
,一个 Parse Relation 对象。我的问题是如何检索当前用户在与会者关系中的所有事件?我当前的代码是:
var query = new Parse.Query(Event).equalTo('attendees',currentUser)
query.find({
success:function(list){
}
})
您的查询似乎没问题,请尝试在数据库中验证您的数据。
命令来自 mongo shell
db.getCollection('_Join:attendees:Event').find({'relatedId':currentuserId})
我有一个 Parse 对象 Event
,它包含一个键 attendees
,一个 Parse Relation 对象。我的问题是如何检索当前用户在与会者关系中的所有事件?我当前的代码是:
var query = new Parse.Query(Event).equalTo('attendees',currentUser)
query.find({
success:function(list){
}
})
您的查询似乎没问题,请尝试在数据库中验证您的数据。
命令来自 mongo shell
db.getCollection('_Join:attendees:Event').find({'relatedId':currentuserId})