首页 > 代码库 > 在js中 把 json对象转化为String对象的方法

在js中 把 json对象转化为String对象的方法

方法1: 使用js的扩展方法

** * json对象转字符串形式 */ 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(‘,‘) + ‘}‘; } 

方法2: 添加对  json2.js 的引用

  
 <script src=http://www.mamicode.com/"~/Scripts/json2.js"></script>
var jsonDetail =  {                Content : "我爱北京天安门",                Type:"1"            };

如果我们想把上面的json对象,转换成 字符串
var  Content = JSON.stringify(jsonDetail)   //这里要把 jsonDetail 给序列化为 字符串