[Javascript] ๋น๋๊ธฐ API ํธ์ถ (async/await, fetch)
์์ ์ฝ๋ 1. index.html ๊ฒ์ํ - Main # ์ ๋ชฉ ์์ฑ์ ์์ฑ์ผ์ ์กฐํ์ {{ board.boardId }} {{ board.title }} {{ board.userName }} {{ board.regDt.date | makeDateStr(".") }} {{ board.readCount }} test ๊ธ์ฐ๊ธฐ HelloPOST 2. main.js function init() { console.log("===init==="); } init(); async function test() { console.log("===test==="); } function getData(url) { return fetch(url).then(function (data) { return data.json(); });..