2017-01-30 113 views
-1

大家好,我試圖鏈我的承諾。鏈接承諾,以停止嵌套

+0

,你'返回objects' - 這將是一個空數組,當然,因爲異步代碼需要完成添加到'objects' –

回答

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 [] 
});