在 JavaScript 中检索 JSON?

发布于 2024-10-19 10:14:00 字数 340 浏览 1 评论 0原文

抱歉,还有一个关于 JavaScript 的问题。从我之前的帖子中,我可以得出以下结论:URL:http://graph.facebook.com/zuck 代表一个 JSON 对象。

现在我的问题是如何在给定 URL 的 JavaScript 代码中检索此对象并打印出与“first_name”相对应的名称(即“Mark”)。

有人可以编写一个快速的 JavaScript 代码示例来获取此 URL,找到与“first_name”对应的字符串并将其打印出来吗?这很容易还是我把事情过于简单化了?

Sorry but yet another question on JavaScript. From my previous post, I was able to conclude that the URL: http://graph.facebook.com/zuck represents a JSON object.

Now my question is how can I retrieve this object in my JavaScript code given the URL and print out the name that corresponds to "first_name" which would be "Mark".

Can someone write a quick example JavaScript code that would take this URL, find the string that corresponds to "first_name" and print it out? Is this easy or am I oversimplifying things?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

风筝有风,海豚有海 2024-10-26 10:14:00

我会尝试使用 jquery 获取数据。 http://api.jquery.com/jQuery.getJSON/
例如,要访问名称,您必须编写如下内容:

$.getJSON('http://graph.facebook.com/zuck', function(data) {
    alert(data.first_name+", "+data.name);
});

I'd try to get the data with jquery. http://api.jquery.com/jQuery.getJSON/
to access the name for example you'd have to write something like this:

$.getJSON('http://graph.facebook.com/zuck', function(data) {
    alert(data.first_name+", "+data.name);
});
浅唱ヾ落雨殇 2024-10-26 10:14:00

如果您使用的是 jQuery:

$.getJSON("http://graph.facebook.com/zuck", function(json) {
   alert("First Name: " + json.first_name);
 });

If you are using jQuery:

$.getJSON("http://graph.facebook.com/zuck", function(json) {
   alert("First Name: " + json.first_name);
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文