Table of Contents
回复内容:
Home Backend Development PHP Tutorial WordPress 跨域请求 JSON 并保存在本地

WordPress 跨域请求 JSON 并保存在本地

Jun 06, 2016 pm 08:47 PM
php wordpress

我在给一个 WordPress 主题添加一个功能:在首页显示当地的 PM2.5 指数。使用了这个第三方服务.

GET 方法可以直接请求到 JSON ,但是 请求次数有限制 (比如一小时最多 5 次),所以我想用 PHP 请求到我要的 JSON,然后保存在服务器上,这样用户访问页面时,直接从我的服务器上请求数据即可。

现在我有这两种思路:

  • 我一开始的思路是,用 PHP 请求到 JSON 后,把 JSON 文件保存到 wp-content/uploads 目录(想法类似于上传文件),找到了 wp_handle_upload 这个函数(和一些零散的资料Link 1, Link 2),但是一直没弄明白怎么用,希望有用过的朋友能指点一下。

  • 后来又想到一个办法,在主题目录里面预先放一个 JSON 文件,然后用 PHP 请求第三方的数据之后再复写这个 JSON 文件。我想这样就避开了 “ 上传 ” 这个动作,直接操作一个 JSON 文件即可。

请问上面那一种方式更可行?如果可行,具体需要用到哪些技术?我后端知识浅薄,希望大家不吝赐教,先多谢了!

回复内容:

我在给一个 WordPress 主题添加一个功能:在首页显示当地的 PM2.5 指数。使用了这个第三方服务.

GET 方法可以直接请求到 JSON ,但是 请求次数有限制 (比如一小时最多 5 次),所以我想用 PHP 请求到我要的 JSON,然后保存在服务器上,这样用户访问页面时,直接从我的服务器上请求数据即可。

现在我有这两种思路:

  • 我一开始的思路是,用 PHP 请求到 JSON 后,把 JSON 文件保存到 wp-content/uploads 目录(想法类似于上传文件),找到了 wp_handle_upload 这个函数(和一些零散的资料Link 1, Link 2),但是一直没弄明白怎么用,希望有用过的朋友能指点一下。

  • 后来又想到一个办法,在主题目录里面预先放一个 JSON 文件,然后用 PHP 请求第三方的数据之后再复写这个 JSON 文件。我想这样就避开了 “ 上传 ” 这个动作,直接操作一个 JSON 文件即可。

请问上面那一种方式更可行?如果可行,具体需要用到哪些技术?我后端知识浅薄,希望大家不吝赐教,先多谢了!

就一个小功能而已,不和WordPress扯上关系也完全么问题呀。直接写一个PHP文件,将抓取过来的JSON文件放到wp-content/uploads目录内,如果文件存在,则直接读取,不存在则进行抓取工作。文件的文件名可以采用“时间地点”的格式。至于主题里头直接就用file_get_contents获取就OK了。给个示例代码:

<code><?php $name = "20140129Beijing";
    $file = './wp-content/uploads/'.$name.'.json';
    $api_url = "";
    if(file_exist($file)) {
        echo file_get_contents($file);
    } else {
        $json = file_get_contents($api_url);
        file_put_contents($json, $file);
        echo $json;
    }
?>
</code>
Copy after login

用用WordPress的API,也是个好选择。再不济WordPress也是个封装了很多东西的框架嘛。

WordPress插件(或主题)如果想存储少量数据,也不必用文件这么麻烦,大可直接借助WordPress的选项系统,把数据扔进wp_options表中。就像这样:

<code><?php $pm25_mod_data = get_option('pm25_mod_data_cache');
if (!$pm25_mod_data) {
    $pm25_mod_data = file_get_contents($pm25_mod_apiurl); //这里也可以调用你做API请求的任何有效代码或函数调用
    add_option('pm25_mod_data_cache', $pm25_mod_data);
}
echo $pm25_mod_data; //或任何其他的格式化输出
?>
</code>
Copy after login

以上这段代码只能实现访客首次访问,且由于种种原因没有缓存时不出错。

你还需要有一个定时刷新,强行更新缓存内容的机制。

这个你应该查查WordPress Cron - WordPress封装了一个环境无关的计划任务系统,既能在可以使用真实cron的平台工作,也可以在没有计划任务程序的情况下“变通的”工作。用这个来定时取最新数据很适合。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles