- 支付成功后跳转到指定页面可以传入参数吗?比如订单号等
主要是希望能在跳转后的界面显示订单号等。 //调用微信JS api 支付 function jsApiCall() { WeixinJSBridge.invoke( 'getBrandWCPayRequest', , function(res){ WeixinJSBridge.log(res.err_msg); //alert(res.err_code+res.err_desc+res.err_msg); if(res.err_msg == "get_brand_wcpay_request:ok"){ //支付成功跳转页面 window.location.href="true.php";//?orderid="+$jsApiParameters }else{ //支付失败/或取消支付跳转页面 window.location.href="false.php"; } } ); }
2020-05-13 - 新接入jsapi 证书等都配置好了,在手机端打开支付样例,点击支付按钮没有反应
jsapi demo中放入了我们商户的信息 也设置了证书等 但在微信中打开连接 点击支付样例中的支付按钮没有反应 没有看到什么报错或者提示
2020-05-13