我有以下代码从不同的新闻网址获取新闻;
function displayNews() {
Promise.all([fetch(BUSINESS_NEWS_URL), fetch(APPLE_NEWS_URL)])
.then(responses => {
return responses.map(response => response.json())
}).then((data) => console.log(data)) // this still prints [Promise]
}
出于某种原因,我得到显示 [Promise] 而不是实际数据。我错过了什么?
Helenr
慕哥6287543
相关分类