使用Promise發送多個異步請求, 所有完成後再執行

const datas = idList .map(id => url+'/id') .map(url => fetch(url).then(res => res.json())); const p = new Promise.all(datas) .then(data => {...}) const datas = idList .map(id => url+'/id')
相關文章
相關標籤/搜索