JSON ECMA 스크립트의 JSON

황제낙엽 2019.10.16 09:42 조회 수 : 391

sitelink1  
sitelink2  
sitelink3  
sitelink4  
extra_vars4  
extra_vars5  
extra_vars6  

JSON(JavaScript Object Notation)

ECMAScript5부터는 정식으로 JSON 객체를 지원하게 되었다.
자바스크립트 객체의 형태를 가지는 문자열을 의미

1) 자바스크립트를 객체를 JSON 문자열로, JSON 문자열을 자바스크립트로 변환하는 예제 (.stringify, .parse)
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>JSON(JavaScript Object Notation)</title>
        <script>
            var object = {
                name:'홍길동',
                gender:'Male'       
            };
            // 자바스크립트 객체를 JSON 형식의 문자열로 만든다.
            alert(JSON.stringify(object));
            // parse(): JSON 문자열을 자바스크립트 객체로 변환
            var copy = JSON.parse(JSON.stringify(object));
            alert(copy.name + ': ' + copy.gender);
        </script>
    </head>
    <body></body>
</html>

 

2) 날짜값을 JSON(JavaScript Object Notation) 형식으로 담아 출력하는 예제 (toJSON)
<script>
    var date = new Date();
    alert(JSON.stringify(date.toJSON()));
</script>

3) 자바의 오버라이딩 개념으로 JSON을 함수를 정의해서 반환하는 예제
<script>
    var object = {
        name:'object',
        prop:'object',
        toJSON:function(){
            return { custom:'custom' };
        }
    };
    alert(JSON.stringify(object));
</script>
 

번호 제목 글쓴이 날짜 조회 수
226 각 브라우저 별 User Agent 정보 황제낙엽 2011.02.22 1242
225 CORS(Cross-Origin Resource Sharing) - 4 file 황제낙엽 2017.03.07 1196
224 자바스크립트의 쉬프트 연산자 (Shift Operator) 와 음수 (Negative) 이야기 황제낙엽 2012.05.31 1095
223 iframe auto resize (cross browsing) 황제낙엽 2011.05.13 1047
222 Javascript CORS/XSS 극복하는(피하는) 방법 file 황제낙엽 2017.07.31 986
221 [JavaScript Tutorials] Introducing the closure (해석중) 황제낙엽 2009.04.10 983
220 Memory leak 및 성능 측정 도구 file 황제낙엽 2011.11.23 965
219 입력받은 날짜와 현재 날짜와의 비교 함수 황제낙엽 2019.08.02 924
218 SelectBox 밑에 CheckBox가 포함된 리스트 만들기 file 황제낙엽 2007.01.16 867
217 JavaScript Reserved Words 황제낙엽 2011.11.28 852
216 Javascript 를 사용하여 Binary File 읽기 황제낙엽 2010.09.29 833
215 JavaScript Touch and Gesture Events iPhone and Android 황제낙엽 2012.04.12 798
214 url encode & decode 황제낙엽 2011.10.30 795
213 Javascript ArrayBuffer ? Binary handling in javascript 황제낙엽 2012.03.19 788
212 현재 document 의 host 와 port 를 얻는 방법 황제낙엽 2023.10.03 776
211 자바스크립트로 서버의 XML파일을 접근 (실패했슴) 황제낙엽 2005.12.11 732
210 JavaScript Array.push Performance 황제낙엽 2011.11.21 723
209 Defining classes and inheritance (클래스 정의와 상속) 황제낙엽 2011.03.24 719
208 String Performance: Getting Good Performance from Internet Explorer (IE7) 황제낙엽 2011.11.24 716
207 call() and apply() methods in Javascript 황제낙엽 2011.10.07 709