前端源码
来源:7-4 支付-师兄教你看错误信息进行代码Review

qq_慕村8086774
2020-01-14
老师能提供一下前端源码嘛
写回答
2回答
-
廖师兄
2020-01-14
同学想要的应该是整个前端项目的源码吧,最后部署的地方会讲。只会提供编译后的代码,源码是不会提供的,它属于另外一门前端课程
012024-02-29 -
慕移动2635586
2020-01-14
顺手粘贴了?
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>支付</title> </head> <body> <div id="myQrcode"></div> <div id="orderId" hidden>${orderId}</div> <div id="returnUrl" hidden>${returnUrl}</div> <script src="https://cdn.bootcss.com/jquery/1.5.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/jquery.qrcode/1.0/jquery.qrcode.min.js"></script> <script> jQuery('#myQrcode').qrcode({ text: "${codeUrl}" }); $(function () { //定时器 setInterval(function () { console.log('开始查询支付状态...') $.ajax({ 'url': '/pay/queryByOrderId', data: { 'orderId': $('#orderId').text() }, success: function (result) { console.log(result) if (result.platformStatus != null && result.platformStatus === 'SUCCESS') { location.href = $('#returnUrl').text() } }, error: function (result) { alert(result) } }) }, 2000) }); </script> </body> </html>
00
相似问题