Javascript - 一个未知的 JSON 对象返回给我,我该如何查看它?

发布于 2024-12-11 05:22:45 字数 344 浏览 0 评论 0原文

我就遇到这样的情况在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

悟红尘 2024-12-18 05:22:45

下载适用于 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

冬天旳寂寞 2024-12-18 05:22:45

尝试使用 console.log(response) 而不是alert。然后检查萤火虫控制台。

Try console.log(response) instead of alert. Then check the firebug console.

相守太难 2024-12-18 05:22:45

如果您安装了 Firebug,请执行以下操作:

console.log(response);

然后您可以从控制台选项卡使用 Firebug 调试 JSON 对象的结构。

If you have firebug installed, do:

console.log(response);

Then you can debug the structure of the JSON object using Firebug from the console-tab.

泡沫很甜 2024-12-18 05:22:45

只需对数据执行 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.

怀中猫帐中妖 2024-12-18 05:22:45

请记住在测试代码后删除 console.log 命令。不支持此功能的浏览器会抱怨。

Remember to remove that console.log command after you tested your code. Browser with no support for this will complain.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文