Nuke Olaf - Log Store

Uncaught SyntaxError: Unexpected token 본문

Language/[PHP]

Uncaught SyntaxError: Unexpected token

NukeOlaf 2020. 2. 8. 22:47

Uncaught SyntaxError: Unexpected token [ in JSON at position 1
    at JSON.parse ()

lists = JSON.parse(this.response) 에서 JSON.parse 를 지워주고, 아래와 같이 하니까 해결된다.

let lists = this.response
lists = JSON.parse(lists)

 

https://ggilrong.tistory.com/entry/Uncaught-SyntaxError-Unexpected-token-o

Comments