iT邦幫忙

0

請問JavaScript要如何用fetch()讀Json檔案內容

  • 分享至 

  • xImage

各位大大好!請問JavaScript如何用fetch()讀json檔案內容,將鍵和值存成變數,最後印在div標籤上呢?
/images/emoticon/emoticon04.gif

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
deh
iT邦研究生 1 級 ‧ 2023-06-03 19:45:42
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的網址

謝謝您

我要發表回答

立即登入回答