我有两页。我将 ajax 调用从第一页发送到第二页以在其中执行 php 代码。
执行需要很长时间(1-2 分钟)。我如何创建进度条并在第一页显示进度百分比。
我可以计算进度百分比,但如何在第一页实时显示。
第一页.php
$.ajax({ url: 'secondpage.php',
data: {'q': data},
type: 'post',
success: function(output) {
//some code
}
第二页.php
<?php
// I have some codes here that can calculate progress percent
// but how to show real time progress percent in firstpage.php
echo $result; //final result(for ajax callback)
?>