标签: javascript json node.js promise
大家好我想兑现我的承诺。
答案 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 [] });