Javascript - 一个未知的 JSON 对象返回给我,我该如何查看它?
我就遇到这样的情况在我的 FB.api 调用中,返回了一个未知的 JSON 对象。我正在尝试弄清楚如何查看这个 JSON 对象!
FB.api('/me/feed', 'post', wallPost , function(response) {
if (!response || response.error) {
alert('Error occured' + response);
} else {
alert('Post ID: ' + response);
}
});
I'm having this situation. In my FB.api call, a unknown JSON object was returned to me. I'm trying to figure out how to look into this JSON object!
FB.api('/me/feed', 'post', wallPost , function(response) {
if (!response || response.error) {
alert('Error occured' + response);
} else {
alert('Post ID: ' + response);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
下载适用于 Firefox 的 Firebug 并在该函数中放置一个断点,然后将鼠标悬停在该变量上,Firebug 应该会显示它的所有属性和对象。或者使用 Chrome 控制台做同样的事情
Download firebug for firefox and put a breakpoint in that function and then hover over that variable and firebug should show you all of its properties and objects. Or use Chromes console to do the same thing
尝试使用 console.log(response) 而不是alert。然后检查萤火虫控制台。
Try console.log(response) instead of alert. Then check the firebug console.
如果您安装了 Firebug,请执行以下操作:
然后您可以从控制台选项卡使用 Firebug 调试 JSON 对象的结构。
If you have firebug installed, do:
Then you can debug the structure of the JSON object using Firebug from the console-tab.
只需对数据执行
console.log
即可。您还可以迭代其键来单独查看每个条目,或者如果您知道其中的一些,只需选择它们即可。Just do a
console.log
of the data. You can also iterate over its keys to look at each entry individually, or if you know some of them, just pick out those.请记住在测试代码后删除 console.log 命令。不支持此功能的浏览器会抱怨。
Remember to remove that console.log command after you tested your code. Browser with no support for this will complain.