Chaining承诺停止筑巢

时间:2017-01-30 05:30:22

标签: javascript json node.js promise

大家好我想兑现我的承诺。

1 个答案:

答案 0 :(得分:2)

在第一个代码块中尝试以下内容

getUrls('https://json', 25, true)
.then((result) => {
    return Promise.all(result.map(url => getJSONObject(url)));
}).then((objects) => {
    console.log(objects); // issue just shows empty []
});