[javascript] javascript의 Set 은 JSON.stringify 로 직렬화 할 수 없다.

By | 6월 21, 2024

어우 몰랐네... 괜히 삽질...

JSON.stringify 를 사용하려면 Set을 배열로 변환해야 한단다.

let mySet = new Set([1, 2, 3]);
let myArray = Array.from(mySet);
let jsonString = JSON.stringify(myArray);
console.log(jsonString); // 출력: "[1,2,3]"
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments