ここに問題があります。まず、多くのjQuery約束($.ajax
で定義)があり、データの解析と約束の別のブロックの作成によって返された値に基づいて行動する必要があります。私のコードは次のようになります例えばQで複数の約束ブロック内の複数の約束を解決する方法
:
Q.all(promisesArray).spead(function(){
let responses = Array.prototype.slice.call(arguments);
....... parse the data and get a result array which I need to use to make more promises
What do I do here?
Q.all(otherPromisesArray).spread(function(){....}) does not work
});
を "連鎖" に解決策を見つけました'spread'を使うべきではありません。 – Bergi