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

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

时间:2014-07-10 11:41:35      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   cti   for   

方法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="~/Scripts/json2.js"></script>
var jsonDetail =  {
                Content : "我爱北京天安门",
                Type:"1"
            };

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

在js中 把 json对象转化为String对象的方法,布布扣,bubuko.com

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

标签:style   blog   color   使用   cti   for   

原文地址:http://www.cnblogs.com/joeylee/p/3812030.html

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