include
ポインター値であるプロパティに使用できるメソッドがあります。include
リレーションでメソッドを使用することはできません。代わりに、Cloud Code 関数を使用して、必要な結果を JSON オブジェクトに集約し、そのオブジェクトを返します。
fetchPostDetails
次のスクリプトの関数を参照してください。
https://github.com/brennanMKE/PostThings/blob/master/Parse/PostThings/cloud/main.js
タグやいいねなどの関連オブジェクトであるアイテムを取得し、たまたまクラスUser
に関連するオブジェクトを取得します。Post
各コメントから投稿へのポインタとして参照されるコメントもあります。fetchPostTags
およびメソッドはfetchPostLikes
、これらの関係をフェッチし、すべての結果を保持している JSON オブジェクトを設定する方法を示しています。これらの Cloud Code の更新をデプロイしてから、iOS 側から関数としてアクセスする必要があります。結果は、投稿、タグ、いいね、コメントの値を持つ NSDictionary として返されます。投稿は Post オブジェクトの配列です。タグ、いいね、コメントは、Parse オブジェクトの配列にアクセスするためのキーとして postId を持つ NSDictionary オブジェクトです。
このようにして、関数を 1 回呼び出すだけで、必要なものが得られます。
GitHub の内容が変更された場合の参考として、以下のコードの一部を含めました。
// Helper functions in PT namespace
var PT = {
eachItem : function (items, callback) {
var index = 0;
var promise = new Parse.Promise();
var continueWhile = function(nextItemFunction, asyncFunction) {
var item = nextItemFunction();
if (item) {
asyncFunction(item).then(function() {
continueWhile(nextItemFunction, asyncFunction);
});
}
else {
promise.resolve();
}
};
var nextItem = function() {
if (index < items.length) {
var item = items[index];
index++;
return item;
}
else {
return null;
}
};
continueWhile(nextItem, callback);
return promise;
},
arrayContainsItem : function(array, item) {
// True if item is in array
var i = array.length;
while (i--) {
if (array[i] === item) {
return true;
}
}
return false;
},
arrayContainsOtherArray : function(array, otherArray) {
/// True if each item in other array is in array
var i = otherArray.length;
while (i--) {
if (!PT.arrayContainsItem(array, otherArray[i])) {
return false;
}
}
return true;
},
fetchPostTags : function(post) {
return post.relation("tags").query().find();
},
fetchPostLikes : function(post) {
return post.relation("likes").query().find();
},
fetchPostComments : function(post) {
var query = new Parse.Query(Comment);
query.include("owner");
query.equalTo("post", post);
return query.find();
},
fetchPostDetails : function(post, json) {
json.tags[post.id] = [];
json.likes[post.id] = [];
json.comments[post.id] = [];
return PT.fetchPostTags(post).then(function(tags) {
json.tags[post.id] = tags;
return PT.fetchPostLikes(post);
}).then(function(likes) {
json.likes[post.id] = likes;
return PT.fetchPostComments(post);
}).then(function(comments) {
json.comments[post.id] = comments;
json.count++;
return Parse.Promise.as();
});
},
};