Home > Backend Development > PHP Tutorial > ajax接口的php文件如何实现跳转

ajax接口的php文件如何实现跳转

PHPz
Release: 2020-09-05 09:43:16
Original
1828 people have browsed it

ajax接口的php文件实现跳转的方法:首先做成服务接口;然后直接php调用并返回数据;接着在客户端判断跳转;最后修改代码为“$url_referer='http://'.$domain.$_SERVER['REQUEST_URI'];”。

ajax接口的php文件如何实现跳转

ajax接口的php文件如何实现跳转?

1. 服务端的代码就不要做成 跳转到另外一个页面处理数据然后返回数据, 而是做成服务接口,直接php调用然后返回数据。

2. 服务端只返回一个状态码(比如:成功,失败等等),客户端判断跳转。

3. ,这个函数里的代码是这样的:

    $url_referer = 'http://'.$domain.$_SERVER['REQUEST_URI'];
    header("Location: http://{$domain}/index.php?g=Wap&m=Api&a=checkLogin&scope={$scope}&token={$token}&from=".urlencode($url_referer));
    exit;
Copy after login

更多相关技术文章,请访问PHP中文网

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template