📜  如何在 js 中使用 fetch() 从数据库中获取图像 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:21.101000             🧑  作者: Mango

代码示例1
let fetchURL = 'http://192.168.22.124:3000/source/';
  let image = name.map((picName) => {
    return picName
  })

  fetch(fetchURL + image)
  .then(response => response.json())
  .then(images => console.log(fetchURL + images));