微信小程序h5页面如果在打开调试模式的情况下可以拉起微信支付,但是关闭了调试模式就无法拉起微信支付。
h5端的代码是用的jssdk,代码如下:
WeixinJSBridge.invoke(
'getBrandWCPayRequest', data.result,
function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ){
//跳转至支付成功页面
window.location.href="./result.html?orderno="+orderno+"&openid="+ GetQueryValue("openid");
}
});
可以参考下这个帖子,看是否能解决您 的问题https://developers.weixin.qq.com/community/develop/doc/0002c20de907102bc07ae556453c00?_at=1609145576796
请问这个问题解决了么