使用Chrome的开发工具调试JSON

时间:2013-04-30 11:07:12

标签: json debugging google-chrome-devtools

如何使用Google Chrome控制台从以下页面访问 结果 数组?

  

twitter.com/search.json?q=stackexchange

我一直收到这个错误:

  

ReferenceError:未定义结果

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:8)

如果你真正想要的是以一种方便的方式浏览这个结果集,只需安装one of JSON viewers for Chrome(最好是JSONView)。

如果您不想安装任何插件,只需运行:

JSON.parse($('.webkit-line-content').innerHTML);

在页面控制台中:

view-source:https://search.twitter.com/search.json?q=stackexchange

答案 1 :(得分:0)

您可以在Chrome控制台选项卡中使用console.debug()功能。 例如:

console.debug(results)