callback to async await1 node.js fetch async await for문으로 여러 url 호출하기 1. 다음 코드를 복사하여 afetch.js 파일을 생성afetch.jsconst afetch = async (url, options) => { return new Promise((resolve, reject) => { fetch(url, options) .then((res) => resolve(res)) .catch((e) => reject(e)); });};async function main() { const items = []; for (const item of items) { const url = "url"; const options = { headers: {}, body: "{}", method: .. 2024. 10. 17. 이전 1 다음 반응형