JavaScirpt fetch API
Usage
fetch
の返り値は、Promise
オブジェクト
async function fetchJson() {
try {
const rs = await fetch('example.json');
const data = await rs.json();
} catch (e) {
console.log(e);
}
}
fetch
の返り値は、Promise
オブジェクト
async function fetchJson() {
try {
const rs = await fetch('example.json');
const data = await rs.json();
} catch (e) {
console.log(e);
}
}