Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
async librarymapのような非同期関数で作成する必要があります。Q.js で作る方法はありますか? async.map
map
async.map
Q のパワーと Array の固有パワーを組み合わせることで…</p>
return Q.all(values.map(function (value) { return getPromise(value); }));
これにより、結果の配列に対する promise が返されます。