首页 > 微信应用  > 

Tp框架实现微信支付接口

Tp框架实现微信支付接口
这篇文章主要为大家详细介绍了Thinkphp微信公众号支付接口,感兴趣的小伙伴们可以参考一下

这篇文章主要为大家详细介绍了thinkphp微信公众号支付接口,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Thinkphp微信公众号支付接口,供大家参考,具体内容如下

第一步  先把文件夹的那两个图片 配置成一样的路径 除了域名要改 其他保持一致。

第二步  把 Weixinpay 这个文件夹放在 \ThinkPHP\Library\Vendor  将Weixinpay文件夹放置到这个Vendor文件夹中

第三步  把  WxJsAPIController.class.php 这个php文件  \Home\Controller  这里面

第四步  把 WxJsAPI这个文件夹  放置在 \Home\View  这个里面

第五步 成功调用微信公众号支付功能

jsApiCall.html

<!DOCTYPE html> <html> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name=&#39;viewport&#39; content=&#39;width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0&#39;/> <title>微信安全支付</title> <script type="text/javascript"> //调用微信JS api 支付 function jsApiCall() { WeixinJSBridge.invoke( &#39;getBrandWCPayRequest&#39;, <?php echo $jsApiParameters; ?>, function(res){ WeixinJSBridge.log(res.err_msg); if(res.err_msg == "get_brand_wcpay_request:ok"){ //alert(res.err_code+res.err_desc+res.err_msg); /*这里写如果支付成功的话执行什么操作*/ }else{ //返回跳转到订单详情页面 alert(支付失败); } } ); } function callpay() { if (typeof WeixinJSBridge == "undefined"){ if( document.addEventListener ){ document.addEventListener(&#39;WeixinJSBridgeReady&#39;, jsApiCall, false); }else if (document.attachEvent){ document.attachEvent(&#39;WeixinJSBridgeReady&#39;, jsApiCall); document.attachEvent(&#39;onWeixinJSBridgeReady&#39;, jsApiCall); } }else{ jsApiCall(); } } </script> </head> <body> <button style="width:210px; height:30px; background-color:#FE6714; border:0px #FE6714 solid; cursor: pointer; color:white; font-size:16px;" type="button" onclick="jsApiCall()" id="asd" >购买</button> </p> </body> </html>

Tp框架实现微信支付接口由讯客互联微信应用栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“Tp框架实现微信支付接口