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