您好,我只是想知道为什么我的javascript重定向在我的php响应后不立即工作?这是场景, 1.我发送了一个帖子请求到我的PHP脚本。 2.我的php脚本然后处理它并返回一个字符串" ok"确定进程已完成(但我的脚本正在执行一个耗时太长的后台进程)。 3.如果字符串正常,我会将用户重定向到确认页面。但是在回归" ok" string我的重定向不会立即生效似乎它还在等待PHP进程完成。以下是我的代码
<?php
$success = $payment->do_payment();
if (!$success) {
throw new Exception("error on payment");
}
set_time_limit(0);
ignore_user_abort(true);
header("Connection: close\r\n");
header("Content-Encoding: utf-8\r\n");
ob_start();
echo "ok"; // This return to the frontend immediately
$size = ob_get_length();
header("Content-Length: {$size}", true);
ob_end_flush();
ob_flush();
flush();
// Below this line is a long php process that takes almost a minute
$this->veryLongProcessRunningOnBackground();
这是我的jquery请求
function payment_do_payment(token){
$.ajax({
url: '/payment',
data:{
mydata: "The data"
},
success: function(txt){
if (txt == "ok"){
console.log("done redirecting now");
window.location.href = "/confirmation-page";
}else{
alert("Failed to process");
}
},
type: 'POST'
});
}