본문 바로가기
Error

Uncaught SyntaxError: Unexpected token < in JSON at position 0

by pavi03 2022. 4. 14.

[React]

const config = {
  headers : {
    'Accept' : 'application/json'
  }
}
fetch(`http://localhost:8086/piece?piece=${piece}`, config)
  .then((res) => res.text())
  .then((data) => {
  console.log(data)
  numbers = data.split(',')
})

fetch 결과가 String일 경우, res.json()이 아니라 res.text()로 처리해야한다.