IT/오류해결노트

json.parse에러

DevHam94 2023. 7. 11. 19:22

error: SyntaxError: Expected ',' or '}' after property value in JSON at position 112

grid를 가져올때 datetime을 그대로 가져오면 json.parse에서 에러가 발생한다. 

그래서 String으로 변환해서 가져와야한다. 

 

CONVERT(CHAR(10),c.rv_write_dt,23) as rv_write_dt,

이런식으로 convert()로 변환해야된다.