iT邦幫忙

0

Json檔案內容如何放在圖片路徑呢?

  • 分享至 

  • xImage

各位大大好!Json檔案內容要如何放圖片路徑呢?我想做按一下nav選單後,用fetch()讀Json檔案,Json檔案內容是名字:照片路徑,一個div顯示名字,另一個div顯示圖片。
/images/emoticon/emoticon04.gif

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

2 個回答

0
deh
iT邦研究生 1 級 ‧ 2023-06-03 19:53:09

假設json長這樣

json
{
  "name": "John",
  "imagePath": "images/john.jpg"
}

那就

fetch('你的json')
  .then(response => response.json())
  .then(data => {
    let name = data.name;
    let imagePath = data.imagePath;
    document.getElementById('nameDiv').innerHTML = name;
    document.getElementById('imageDiv').innerHTML = `<img src="${imagePath}" alt="${name}">`;
  })
  .catch(error => console.error(error));

謝謝您

0
brooklyn43
iT邦見習生 ‧ 2023-06-04 03:10:31

Read the json content from file .
Deserialize the content into object .
Add a new property named image in model and assign the value to it .
Serialize the object into json string .
Write the string into file .

我要發表回答

立即登入回答