■ 간단한 오브젝트 만들기
JSON 객체(Object)는 Javascript를 사용하여 만들 수 있습니다. Javascript를 사용하여 JSON 객체를 만드는 여러 가지 방법을 살펴 봅시다 :
빈 객체 만들기 :
var JSONObj = {};
새 객체 만들기 :
var JSONObj = new Object();
string타입 bookname 와 숫자타입 price 를 속성을 갖는 오브젝트를 생성. 이 속성은 '.' 연산자를 통해 접근합니다.
var JSONObj = { "bookname ":"VB BLACK BOOK", "price":500 };
다음은 JSON을 사용하여 JavaScript에서 객체를 생성한 예제입니다. 아래의 코드를 json_object.htm 로 저장합니다.
<html>
<head>
<title>Creating Object JSON with JavaScript</title>
<script language="javascript" >
var JSONObj = { "name" : "tutorialspoint.com", "year" : 2005 };
document.write("<h1>JSON with JavaScript example</h1>");
document.write("<br>");
document.write("<h3>Website Name="+JSONObj.name+"</h3>");
document.write("<h3>Year="+JSONObj.year+"</h3>");
</script>
</head>
<body>
</body>
</html>
IE와 다른 Javascript의 실행을 지원하는 브라우저를 사용하여 json_object.htm 열면, 다음과 같은 결과가 생성됩니다.
■ Array 객체 만들기
다음은 JSON을 사용하여 JavaScript에서 객체를 생성한 예제입니다. 아래의 코드를 json_array_object.htm 로 저장합니다.
<html>
<head>
<title>Creation of array object in javascript using JSON</title>
<script language="javascript" >
document.writeln("<h2>JSON array object</h2>");
var books = { "Pascal" : [
{ "Name" : "Pascal Made Simple", "price" : 700 },
{ "Name" : "Guide to Pascal", "price" : 400 }
],
"Scala" : [
{ "Name" : "Scala for the Impatient", "price" : 1000 },
{ "Name" : "Scala in Depth", "price" : 1300 }
]
}
var i = 0
document.writeln("<table border='2'><tr>");
for(i=0;i<books.Pascal.length;i++)
{
document.writeln("<td>");
document.writeln("<table border='1' width=100 >");
document.writeln("<tr><td><b>Name</b></td><td width=50>"
+ books.Pascal[i].Name+"</td></tr>");
document.writeln("<tr><td><b>Price</b></td><td width=50>"
+ books.Pascal[i].price +"</td></tr>");
document.writeln("</table>");
document.writeln("</td>");
}
for(i=0;i<books.Scala.length;i++)
{
document.writeln("<td>");
document.writeln("<table border='1' width=100 >");
document.writeln("<tr><td><b>Name</b></td><td width=50>"
+ books.Scala[i].Name+"</td></tr>");
document.writeln("<tr><td><b>Price</b></td><td width=50>"
+ books.Scala[i].price+"</td></tr>");
document.writeln("</table>");
document.writeln("</td>");
}
document.writeln("</tr></table>");
</script>
</head>
<body>
</body>
</html>
IE와 다른 Javascript의 실행을 지원하는 브라우저를 사용하여 열면, 다음과 같은 결과가 생성됩니다.
'프로그래밍 > 자바기술' 카테고리의 다른 글
JSON 튜토리얼 #3 - 데이터 타입 (0) | 2013.11.21 |
---|---|
JSON 튜토리얼 #2 - 문법 (0) | 2013.11.20 |
JSON 튜토리얼 #1 - 개요 (0) | 2013.11.19 |
자바[Java] 강좌 #7 - 연산자 (0) | 2013.11.10 |