本文实例为大家分享了PHP微信扫码支付成功之后自动跳转的具体代码,供大家参考,具体内容如下
场景: PC端 微信扫码支付
结果: 支付成功 自动跳转
实现思路:
支付二维码页面,写ajax请求支付状态,请求到结果,无论成功还是失败,都跳转到相应的结果页面
具体实现方法:
html部分:
支付结果状态设定: 0 未支付 1 支付成功 2 支付失败
PHP;">
跳转到结果页面,并传递状态
window.location.href="http://" rel="external nofollow" rel="external nofollow" +window.location.host+"/home/cart/pay_result?pay_status=success";
},1000)
}else if(data =='2'){
window.clearInterval(int); //销毁定时器
setTimeout(function(){
//<a href="https://www.jb51.cc/tag/tiaozhuan/" target="_blank" class="keywords">跳转</a>到结果<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>,并传递状态
window.location.href="http://" rel="external <a href="https://www.jb51.cc/tag/nofollow/" target="_blank" class="keywords">nofollow</a>" rel="external <a href="https://www.jb51.cc/tag/nofollow/" target="_blank" class="keywords">nofollow</a>" +window.location.host+"/home/cart/pay_result?pay_status=fail";
},1000)
}
},error:function(){
alert("error");
},});
}
//启动定时器
var int=self.setInterval(function(){pay_status()},1000);
PHP 部分:
where("order_id = $order_id")->find();
echo $result['pay_status'];
}
原文链接:https://www.f2er.com/php/17169.html