feat: 微信支付fix1
This commit is contained in:
parent
ebcb3a9d7f
commit
c2fd9e68f9
|
@ -235,5 +235,16 @@ func WxJsApiPay(c *gin.Context) {
|
||||||
req.ClientIp = c.ClientIP()
|
req.ClientIp = c.ClientIP()
|
||||||
|
|
||||||
rsp, code := thirdpay.WxJsApiPay(*req)
|
rsp, code := thirdpay.WxJsApiPay(*req)
|
||||||
controllers.ApiRes(c, rsp, code, rsp.ThirdMsg)
|
if code == errorcode.Success {
|
||||||
|
c.HTML(http.StatusOK, "index.html", gin.H{
|
||||||
|
"appId": rsp.AppId,
|
||||||
|
"timeStamp": rsp.TimeStamp,
|
||||||
|
"nonceStr": rsp.NonceStr,
|
||||||
|
"package": rsp.Package,
|
||||||
|
"signType": rsp.SignType,
|
||||||
|
"paySign": rsp.PaySign,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
controllers.ApiRes(c, rsp, code, rsp.ThirdMsg)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,47 +6,39 @@
|
||||||
<title>微信授权登录</title>
|
<title>微信授权登录</title>
|
||||||
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body onload="getCode()">
|
<body>
|
||||||
<button id="loginBtn">微信登录</button>
|
|
||||||
<script>
|
<script>
|
||||||
function getCode() {
|
function onBridgeReady() {
|
||||||
// 获取当前 URL 的查询参数
|
WeixinJSBridge.invoke(
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
'getBrandWCPayRequest', {
|
||||||
|
"appId": "{{.appId}}", //公众号ID,由商户传入
|
||||||
// 获取名为 "id" 的查询参数值
|
"timeStamp": "{{.timeStamp}}", //时间戳,自1970年以来的秒数
|
||||||
const id = urlParams.get('id');
|
"nonceStr": "{{.nonceStr}}", //随机串
|
||||||
|
"package": "{{.package}}",
|
||||||
fetch('/pay/front/api/v1/wx/getWxAuthUrl', {
|
"signType": "{{.signType}}", //微信签名方式:
|
||||||
method: 'POST',
|
"paySign": "{{.paySign}}" //微信签名
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
},
|
||||||
body: JSON.stringify({
|
function (res) {
|
||||||
'pay_channel_id': id
|
if (res.err_msg == "get_brand_wcpay_request:ok") {
|
||||||
}),
|
// 使用以上方式判断前端返回,微信团队郑重提示:
|
||||||
})
|
//res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。
|
||||||
.then(async response => {
|
alert('支付成功');
|
||||||
if (response.ok) {
|
|
||||||
const data = await response.json()
|
|
||||||
console.log(data)
|
|
||||||
if (data.code === 200) {
|
|
||||||
return data;
|
|
||||||
} else {
|
|
||||||
throw new Error('获取url失败');
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
throw new Error('获取url失败');
|
alert('支付失败');
|
||||||
}
|
}
|
||||||
})
|
|
||||||
.then(data => {
|
|
||||||
console.log('获取url:', data);
|
|
||||||
console.log('获取url:', data.data);
|
|
||||||
window.location.href = data.data; // 跳转
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('获取url失败:', error);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (typeof WeixinJSBridge == "undefined") {
|
||||||
|
if (document.addEventListener) {
|
||||||
|
document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false);
|
||||||
|
} else if (document.attachEvent) {
|
||||||
|
document.attachEvent('WeixinJSBridgeReady', onBridgeReady);
|
||||||
|
document.attachEvent('onWeixinJSBridgeReady', onBridgeReady);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
onBridgeReady();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue