Fetch 呼び出しで Promise を返す前に、コレクションが Parse 関数を介して応答を実行したことを確認する方法はありますか? すなわち。
var colsComplete = _.invoke(cols, 'fetch'); // cols is an array of collections
$.when(colsComplete).then(callback); // this runs before the Parse function has been hit!
Fetch 呼び出しで Promise を返す前に、コレクションが Parse 関数を介して応答を実行したことを確認する方法はありますか? すなわち。
var colsComplete = _.invoke(cols, 'fetch'); // cols is an array of collections
$.when(colsComplete).then(callback); // this runs before the Parse function has been hit!