場景: PC端 微信掃碼支付
結果: 支付成功自動跳轉
本文主要和大家詳細介紹了微信掃碼支付成功之後自動跳轉php版代碼,具有一定的參考價值,有興趣的夥伴可以參考一下,希望能幫助大家。
實現想法:
支付二維碼頁面,寫ajax請求支付狀態,請求到結果,無論成功或失敗,都跳到對應的結果頁面
特定實作方法:
html部分:
支付結果狀態設定: 0 未支付 1 支付成功2 支付失敗
<input type="hidden" id="order_id" value="<?php echo $order_id;?>"> <script type="text/javascript"> function pay_status(){ var order_id = $("#order_id").val(); $.ajax({ url:'http://' + window.location.host+ '/home/cart/pay_status_check', dataType:'json', type:'post', data:{'order_id':order_id}, success:function(data){ if(data == '1' ){ window.clearInterval(int); //销毁定时器 setTimeout(function(){ //跳转到结果页面,并传递状态 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(){ //跳转到结果页面,并传递状态 window.location.href="http://" rel="external nofollow" rel="external nofollow" +window.location.host+"/home/cart/pay_result?pay_status=fail"; },1000) } }, error:function(){ alert("error"); }, }); } //启动定时器 var int=self.setInterval(function(){pay_status()},1000); </script>
PHP 部分:
//支付状态检测 public function pay_status_check(){ $order_id = I("order_id"); $result = M('table')->where("order_id = $order_id")->find(); echo $result['pay_status']; }
基礎功能就這些,如果想效果好看一點,可以再加一些樣式,例如:付款成功,加一個對號的動畫!
相關推薦:
以上是PC端微信掃碼支付成功後自動跳轉php版代碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!