fetch('http://localhost:8080/?apiKey=123&parm=abc', { method : 'GET', headers : { 'Content-Type' : 'application/json' }, body : JSON.stringify({ name : 'aaa', age : 33, email : 'test@test.com' })}).then(res => res.json).then.(json => console.log(json);//method 는 GET,POST,PUT,DELETE//body 부분은 문자화const proc = async () => { let res = await fetch('http://localhost:8080/?apiKey=123&..