前端源码

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

qq_慕村8086774

2020-01-14

老师能提供一下前端源码嘛

写回答

2回答

廖师兄

2020-01-14

同学想要的应该是整个前端项目的源码吧,最后部署的地方会讲。只会提供编译后的代码,源码是不会提供的,它属于另外一门前端课程

0
1
张三少
前端源码没有提供,支付流程就不完整了嘛,不给前端源码课程还是完整的吗,这是什么操作?
2024-02-29
共1条回复

慕移动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>


0
0

实战支付+电商双系统 玩转Java技术栈

花一份课的价,收获:双系统实战+坐拥20K+粉的师兄指导,值~

2046 学习 · 1048 问题

查看课程