如何使用这个json并在浏览器中显示它?
我经常使用这个 twitter api 网站 进行搜索。它提供了自己的API。现在我想尝试一下,但不知道该怎么做。我的想法是:
- 在 html 中放置一个搜索框,在
onclick
事件中它将检索 json - 解析该 json 并计算每条推文的长度(仅推文文本的长度,而不是用户 ID)
- 显示每条推文用户 ID,浏览器中的日期、链接、文本(所有推文数据)
- 推文文本的长度附加到每条推文的 (3)
中,我是 javascript 和 json 的新手。你能让我知道如何检索 json 并执行上述操作吗?
I frequently use this twitter api website to search. It provides its own api. Now I want to try it but do not know how to do it. My idea is:
- Put a search box in html and in
onclick
event it will retrieve json - Parse that json and count the length of each tweet (only length of tweet text, not userid)
- Display each tweet userid, date, link, text (all tweet data) in browser
- Length of tweet text is appending to (3) for each tweet
I am new in javascript and json. Will you let me know how to retrieve json and do above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,回顾一下 JSON 请求的基础知识会有所帮助。完成此操作后,请随意温习 jQuery 并使用 jQuery.getJSON() 从给定的 URL 检索所需的 JSON。这是一些伪代码:
First, it would help to review the fundamentals of JSON requests. Once you do that, feel free to brush up on jQuery and use jQuery.getJSON() to retrieve the JSON you want from a given URL. Here's some pseudo code: