码迷,mamicode.com
首页 > Web开发 > 详细

分享一个json字符串转换方法

时间:2017-02-11 12:38:23      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:test   join   number   art   type   cti   function   分享   .net   

function json2str(o) { 
var arr = []; 
var fmt = function(s) { 
if (typeof s == ‘object‘ && s != null) return json2str(s); 
return /^(string|number)$/.test(typeof s) ? ‘"‘ + s + ‘"‘ : s; 
} 
for (var i in o) arr.push("‘" + i + "‘:" + fmt(o[i])); 
return ‘{‘ + arr.join(‘,‘) + ‘}‘; 
} 

//json2str({a:1,sd:3})
//"{‘a‘:"1",‘sd‘:"3"}"

  来自 : http://www.jb51.net/article/32825.htm

分享一个json字符串转换方法

标签:test   join   number   art   type   cti   function   分享   .net   

原文地址:http://www.cnblogs.com/zhujiasheng/p/6388951.html

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