我需要能够获取任何JSON数据并打印键/值对。

(类似于PHP中的print_r())

使用javascript甚至可能吗?

最佳答案

是的,您可以通过警报处理大量信息,也可以将其用于调试。

这也是print_r equivalent for javascript

function print_r(theObj){
  if(theObj.constructor == Array ||
     theObj.constructor == Object){
    document.write("<ul>")
    for(var p in theObj){
      if(theObj[p].constructor == Array||
         theObj[p].constructor == Object){
document.write("<li>["+p+"] => "+typeof(theObj)+"</li>");
        document.write("<ul>")
        print_r(theObj[p]);
        document.write("</ul>")
      } else {
document.write("<li>["+p+"] => "+theObj[p]+"</li>");
      }
    }
    document.write("</ul>")
  }
}

祝您项目顺利!

09-19 17:08