Skip to content

Qvil Blog

[JSON] Tip - 주석

json, tip, comments, json51 min read

json에서 javascript 주석 문법을 사용하면 에러가 출력된다.

에러예제

1{
2 // "key1": "value1", // Error
3 /* "key2": "value2", */ // Error
4 "key3": "value3"
5}

대책

JSON에서는 주석을 사용하지 마라.

json-douglas-comments

그러나 사용하고 싶다면 JSON5를 사용하자.

JSON5

참고