json和php新闻系统
我可以访问以 json 格式生成新闻的 api。 例如,对于新闻 ID #9,我可以从以下位置获取日期:
someserver.com/core/news/9
此页面生成新闻的 json 数据。
我如何使用 jquery 解析这个日期并制作包含所有新闻的新闻系统?
I have access to the api which generates news in json.
for example for news id #9 I can get date from:
someserver.com/core/news/9
this page generates json data for the news.
How I can parse this date using jquery and make news system that will include all newses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jQuery.GetJSON() : http://api.jquery.com/ jQuery.getJSON/
但是 API 提供者必须支持 JSONP 否则你会遇到浏览器限制。 (同源政策)
Using
jQuery.GetJSON()
: http://api.jquery.com/jQuery.getJSON/However the API provider must support JSONP otherwise you will run into browser restrictions. (Same origin policy)
如果您改变主意,您也可以使用 php 来完成此操作(不受浏览器限制,尽管服务器会使用 php)。
Incase you change your mind, you can also do this with php (without browser restrictions, though the server would php).