码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript示例九(JSON序列化)

时间:2014-11-29 16:02:33      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:javascript

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>JSON序列化示例</title>
 </head>
 <body>
 
 <script>
  var book={
	  title:"Professional JavaScript",
	  authors:["Nicholas C. Zakas","Other"],
	  edition:3,
	  year:2011,
	  //*
	  toJSON:function(){
		  return this;
	  }
	  //*/
  };
  var jsontext=JSON.stringify(book,function(key,value){
	  switch(key){
		  case "authors":
			return value.join(";")
		  case "year":
			return 2015;
		  case "edition":
			return undefined;
		  default:
			return value;
	  }
  },3);
  console.log(jsontext);
	//json序列化函数stringify过滤步骤依次为:toJSON()方法、第二个参数的过滤函数、第三个参数的格式化

 </script>

 </body>
</html>

JavaScript示例九(JSON序列化)

标签:javascript

原文地址:http://blog.csdn.net/zjc/article/details/41596123

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!