JavaScript示例九(JSON序列化)
<!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>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。