各位大大好!請問JavaScript如何用fetch()讀json檔案內容,將鍵和值存成變數,最後印在div標籤上呢?
fetch('example.json')
.then(response => response.json())
.then(data => {
let key = data.key;
let value = data.value;
document.getElementById('myDiv').innerHTML = key + ': ' + value;
})
.catch(error => console.error(error));
example.json也可以直接是取得json的網址