반응형

JSON을 이용한 개발이 활발히 이루어지고 있는데, 그냥 text 로 JSON 내용을 분석하거나 디버깅하는 것은 너무나 어렵다.

그래서 간단하게 온라인에서 JSON파일을 보기 좋게 볼 수 있는 viewer를 이용하게 된다.

http://jsonviewer.stack.hu/



Test JSON Sample

{"menu": {    

"header": "SVG Viewer",

    "items": [

        {"id": "Open"},

        {"id": "OpenNew", "label": "Open New"},

        null,

        {"id": "ZoomIn", "label": "Zoom In"},

        {"id": "ZoomOut", "label": "Zoom Out"},

        {"id": "OriginalView", "label": "Original View"},

        null,

        {"id": "Quality"},

        {"id": "Pause"},

        {"id": "Mute"},

        null,

        {"id": "Find", "label": "Find..."},

        {"id": "FindAgain", "label": "Find Again"},

        {"id": "Copy"},

        {"id": "CopyAgain", "label": "Copy Again"},

        {"id": "CopySVG", "label": "Copy SVG"},

        {"id": "ViewSVG", "label": "View SVG"},

        {"id": "ViewSource", "label": "View Source"},

        {"id": "SaveAs", "label": "Save As"},

        null,

        {"id": "Help"},

        {"id": "About", "label": "About Adobe CVG Viewer..."}

    ]

}}


JSON 온라인 뷰어 화면




반응형

+ Recent posts