티스토리 뷰
728x90
반응형
JSON은 "JavaScript Object Notation"의 약자로, 데이터 교환을 위해 사용되는 경량의 데이터 형식입니다.
JSON.stringify(value[, replacer[, space]])
const person = {
name: "John",
age: 30,
city: "New York"
};
const jsonString = JSON.stringify(person);
console.log(jsonString);
{"name":"John","age":30,"city":"New York"}
// replacer 옵션과 space 옵션 사용 예제
const person = {
name: "John",
age: 30,
city: "New York",
sensitiveInfo: "This should be hidden"
};
// replacer 함수를 사용하여 sensitiveInfo 속성을 필터링하고 변환
const filteredJSON = JSON.stringify(person, (key, value) => {
if (key === "sensitiveInfo") {
return undefined; // 해당 속성은 무시됨
}
return value;
}, 2); // 2개의 공백 문자로 들여쓰기
console.log("Filtered JSON:");
console.log(filteredJSON);
// space 옵션을 사용하여 가독성을 높인 JSON 문자열 생성
const formattedJSON = JSON.stringify(person, null, 4); // 4개의 공백 문자로 들여쓰기
console.log("\nFormatted JSON:");
console.log(formattedJSON);
Filtered JSON:
{
"name": "John",
"age": 30,
"city": "New York"
}
Formatted JSON:
{
"name": "John",
"age": 30,
"city": "New York",
"sensitiveInfo": "This should be hidden"
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- nl2br
- error-java
- 스프링 시큐리티(spring security)
- REST API
- 람다식(lambda expression)
- java.sql
- java web-mvc
- 제품 등록
- java 키워드 정리
- 메이븐(maven)
- java-개발 환경 설정하기
- jstl(java standard tag library)-core
- React
- In App Purchase
- 스프링 프레임워크(spring framework)
- 표현 언어(expression language)
- 진수 변환
- .submit()
- jstl(java standard tag library)
- await
- system.io
- 상품 등록
- 인텔리제이(intellij)
- 특정 문자를 기준으로 자르기
- 스프링 시큐리티(spring security)-http basic 인증
- 문자 자르기
- jsp 오픈 소스
- MainActor
- 스프링 프레임워크(spring framewordk)
- System.Diagnostics
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함