Parse.Object.fetchAll with" include"组?

时间:2015-09-09 05:58:17

标签: javascript parse-platform

我使用的是Parse的JS SDK,我想做以下事情:

我有一个对象数组。我想发出一个查询来获取这些对象的数据,包括对象的嵌套属性的数据。我想做的事情类似于以下内容(它似乎不起作用):

var parents = myInstance.get('parents');
var query = new Parse.Query('ParentClass');

// Below, set query condition to only fetch data for objects 
// found in "parents."
query.containedIn('objectId', idsForArray(parents));

query.include('child'); // Include data for child class

query.find().then(function(results) {
  for result in results {
    result.get('child'); // child data should be fetched
  }
});

有办法做到这一点吗?

0 个答案:

没有答案