JSON到字符串变量转储


82

是否有快速功能将通过接收jQuery getJSON到的JSON对象转换为字符串变量转储(用于跟踪/调试)?


5
愚蠢的问题-为什么将此标记为垃圾邮件?
ina 2012年

1
出于同样的原因,我的问题也被否决了,有时用户的点击不准确!
托尼·利

Answers:


121

是的,JSON.stringify可以在此处找到,它包含在Firefox 3.5.4及更高版本中。

JSON字符串反方向相反,将JavaScript数据结构转换为JSON文本。JSON不支持循环数据结构,因此请注意不要将循环结构提供给JSON字符串化器。 https://web.archive.org/web/20100611210643/http://www.json.org/js.html

var myJSONText = JSON.stringify(myObject, replacer);

1
它也包含在chrome中,但是在json.org链接上有一个(巨大的)404
Dean Rather

1
如果您只想使用此日志记录数据:console.log(JSON.stringify(data,null)); 如果不需要替换函数,则传递null!
elliotrock 2014年

29

您可以console.log()在Firebug或Chrome中使用它,以在此处获得良好的对象视图,如下所示:

$.getJSON('my.json', function(data) {
  console.log(data);
});

如果您只想查看字符串,请查看Chrome中的Resource视图Firebug中Net视图,以查看来自服务器的实际字符串响应(无需转换它...您是通过这种方式收到的)。

如果您想将该字符串取下来并分解以便于查看,这里有个很棒的工具:http : //json.parser.online.fr/


添加错误处理程序很有用,否则getJSON将以静默方式失败,并且您将很难理解为什么它不起作用:add .fail(function(jqxhr, status, error) { alert(status + ", " + error);})
Skippy le Grand Gourou

13

我个人使用了很多jQuery转储插件来转储对象,它有点类似于PHP的print_r()函数的基本用法:

var obj = {
            hubba: "Some string...",
            bubba: 12.5,
            dubba: ["One", "Two", "Three"]
        }
$("#dump").append($.dump(obj));
/* will return:
Object { 
     hubba: "Some string..."
     bubba: 12.5
     dubba: Array ( 
          0 => "One"
          1 => "Two"
          2 => "Three"
     )
}
*/

它的可读性很强,我也建议您使用此网站http://json.parser.online.fr/创建/解析/读取json,因为它的颜色很好


1
这确实很棒,但是它需要安装另一个插件(并且仅用于调试)
ina 2010年

是的,我知道...但是当我在寻找答案时,我经常会在答案中找到一些有用的东西,因为我的问题与问题有关。这个插件可能确实是有点大材小用,当你只是有一个简单的问题:P
领带

4

这是我使用的代码。您应该能够使其适应您的需求。

function process_test_json() {
  var jsonDataArr = { "Errors":[],"Success":true,"Data":{"step0":{"collectionNameStr":"dei_ideas_org_Private","url_root":"http:\/\/192.168.1.128:8500\/dei-ideas_org\/","collectionPathStr":"C:\\ColdFusion8\\wwwroot\\dei-ideas_org\\wwwrootchapter0-2\\verity_collections\\","writeVerityLastFileNameStr":"C:\\ColdFusion8\\wwwroot\\dei-ideas_org\\wwwroot\\chapter0-2\\VerityLastFileName.txt","doneFlag":false,"state_dbrec":{},"errorMsgStr":"","fileroot":"C:\\ColdFusion8\\wwwroot\\dei-ideas_org\\wwwroot"}}};

  var htmlStr= "<h3 class='recurse_title'>[jsonDataArr] struct is</h3> " + recurse( jsonDataArr );
  alert( htmlStr );
  $( document.createElement('div') ).attr( "class", "main_div").html( htmlStr ).appendTo('div#out');
  $("div#outAsHtml").text( $("div#out").html() ); 
}
function recurse( data ) {
  var htmlRetStr = "<ul class='recurseObj' >"; 
  for (var key in data) {
        if (typeof(data[key])== 'object' && data[key] != null) {
            htmlRetStr += "<li class='keyObj' ><strong>" + key + ":</strong><ul class='recurseSubObj' >";
            htmlRetStr += recurse( data[key] );
            htmlRetStr += '</ul  ></li   >';
        } else {
            htmlRetStr += ("<li class='keyStr' ><strong>" + key + ': </strong>&quot;' + data[key] + '&quot;</li  >' );
        }
  };
  htmlRetStr += '</ul >';    
  return( htmlRetStr );
}

</script>
</head><body>
<button onclick="process_test_json()" >Run process_test_json()</button>
<div id="out"></div>
<div id="outAsHtml"></div>
</body>

2

沿着这件事?

function dump(x, indent) {
    var indent = indent || '';
    var s = '';
    if (Array.isArray(x)) {
        s += '[';
        for (var i=0; i<x.length; i++) {
            s += dump(x[i], indent)
            if (i < x.length-1) s += ', ';
        }
        s +=']';
    } else if (x === null) {
      s = 'NULL';
    } else switch(typeof x) {
        case 'undefined':
            s += 'UNDEFINED';
            break;
        case 'object':
            s += "{ ";
            var first = true;
            for (var p in x) {
                if (!first) s += indent + '  ';
                s += p + ': ';
                s += dump(x[p], indent + '  ');
                s += "\n"
                first = false;
            }
            s += '}';
            break;
        case 'boolean':
            s += (x) ? 'TRUE' : 'FALSE';
            break;
        case 'number':
            s += x;
            break;
        case 'string':
            s += '"' + x + '"';
            break;
        case 'function':
            s += '<FUNCTION>';
            break;
        default:
            s += x;
            break;
    }
    return s;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.