在 JavaScript 中检索 JSON?
抱歉,还有一个关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会尝试使用 jquery 获取数据。 http://api.jquery.com/jQuery.getJSON/
例如,要访问名称,您必须编写如下内容:
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:
如果您使用的是 jQuery:
If you are using jQuery: