복붙노트

[REACTJS] API에서 이미지를 가져 오기

REACTJS

API에서 이미지를 가져 오기

해결법


  1. 1.서버에서 응답은 이진 파일이 아닌 JSON 형식의 텍스트입니다. 당신은 BLOB으로 응답 스트림을 읽을 필요가있다.

    서버에서 응답은 이진 파일이 아닌 JSON 형식의 텍스트입니다. 당신은 BLOB으로 응답 스트림을 읽을 필요가있다.

    var outside
    
    fetch(fetchURL + image)
      //                         vvvv
      .then(response => response.blob())
      .then(images => {
          // Then create a local URL for that image and print it 
          outside = URL.createObjectURL(images)
          console.log(outside)
      })
    
  2. from https://stackoverflow.com/questions/50248329/fetch-image-from-api by cc-by-sa and MIT license