PHP ajax asynchronous execution without waiting for the execution result, ajax processing method_PHP tutorial

WBOY
Release: 2016-07-13 09:52:20
Original
1142 people have browsed it

PHP ajax asynchronous execution without waiting for the execution result, ajax processing method

In the short address generation application, a web page snapshot needs to be generated based on the long address. This generation time is not instantaneous , unpredictable.

So the solution adopted by the front-end is generally to display the generated short address first, and then periodically AJAX check whether the web page snapshot has been generated.

So, the PHP code is processed as follows:

Copy code The code is as follows:
// The server here uses phantomjs to generate web page snapshots
$cd = '/home/emp/phpinstall/phantomjs-1.5.0/bin/phantomjs /home/emp/phpinstall/phantomjs/snap.js "'.$url.'" /home/emp/public_html_demo/cms/' .$thumb.' & ';
try{
@pclose(popen($cd,"r"));
}catch(Exception $e){}

Ajax script for front-end Js:
Copy code The code is as follows:
_wt = window.setInterval("sys.ajax('?m=shorturl&c=index&a=check_snap','',callback.checkSnap);",200);

The callback function checkSnap waits for PHP's check_snap to detect whether the web page snapshot file is generated.

After receiving the generated information, clear the _wt timer.
Copy code The code is as follows:
clearTimeout(_wt);

In this way, the JFYF pair of PHP and front-end AJAX cooperate very happily~

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1008022.htmlTechArticlePHP ajax asynchronous execution without waiting for the execution result. In the ajax processing method short address generation application, it should be based on the long The address generates a web page snapshot. The generation time is not instant and unpredictable...
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!