json和php新闻系统

发布于 2024-11-01 08:13:36 字数 181 浏览 1 评论 0原文

我可以访问以 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 技术交流群。

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

发布评论

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

评论(2

夜血缘 2024-11-08 08:13:36

使用 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)

太傻旳人生 2024-11-08 08:13:36

如果您改变主意,您也可以使用 php 来完成此操作(不受浏览器限制,尽管服务器会使用 php)。

$newsID = 9;
$json = file_get_contents("someserver.com/core/news/".$newsID);
$news = json_decode($json, true);
print_r($news);

Incase you change your mind, you can also do this with php (without browser restrictions, though the server would php).

$newsID = 9;
$json = file_get_contents("someserver.com/core/news/".$newsID);
$news = json_decode($json, true);
print_r($news);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文