Home > Backend Development > PHP Tutorial > php获取数据更新进度的问题

php获取数据更新进度的问题

WBOY
Release: 2016-06-23 14:38:57
Original
1072 people have browsed it

本帖最后由 aier520 于 2013-12-06 00:59:45 编辑

update.php 页大概如下:

//此页面执行时间比较长,可能要几分钟$sql = "select * from news";//执行sql 得到数组 $news_arr 具体代码省略$news_count=count($news_arr )-1;统计数组数量,以便计算更新的进度//开始循环数组且更新数据foreach($news_arr as $key => $value){    //从别数据库获得数据 且更新到本地数据,代码省略    $_SERVER['wait']=floor($key/$news_count*100); 把更新进度保存进session}
Copy after login


getdata.php 页是输出session中保存的更新进度,代码如下
echo $_SERVER['wait'];
Copy after login


html页内容大致如下:

当点击这个按钮时触发一个js(jquery写的)
$(".bgn,.bgy").click(function() {	url="http://localhost/update.php";	//数据更新的操作页	$.get(url);//用ajax的方法去执行更新程序	function getwait() {		$.get(			"http://localhost/getdata.php",	//获得数据更新的进度			function(redata) {//问题出在这里  在上面的 $.get(url) 去执行更新,//如果php的更新脚本没有执行完成(就是update.php 这个页的程序没有执行完成),//这里不会有任何数据返回,请问朋友们,这个问题我要怎么解决呢?				alert(redata);				//这里做更新进度条的处理			},			"text")	}	setInterval(getwait, 1000);})
Copy after login



回复讨论(解决方案)

你要做进度条 在前端做一个定时器 定时的去提交数据 返回结果 提交一次10%...不用我说了吧 大概这个意思吧

PHP进度条

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