h5页面如何跳到小程序支付页面 小程序跳转h5页面无法支付

主机教程 建站分享 2年前 (2022-12-16) 231次浏览

文章摘要:h5页面如何跳到小程序支付页面 小程序跳转h5页面无法支付

在h5页面中调用小程序支付页面的方法 1.H5页面代码 <body ><div class= […]

在h5页面中调用小程序支付页面的方法

1.H5页面代码

<body >
<div class="container">
<button onclick="testPay()">支付</button>
</div>
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script&gt;
<script language="javascript">
function testPay() {
var mini=false;
wx.miniProgram.getEnv(function(res){
if (res.miniprogram){
//发起小程序支付
wx.miniProgram.navigateTo({url: "/pages/wxpay/wxpay"});
mini=true;
}
});
}
</script>
</body>

2.H5页面跳转到小程序支付代码

Page({

data: {

},

onLoad: function (options) {

var that = this;

console.log("回到小程序")

console.log(options)

//业务流程

},


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:h5页面如何跳到小程序支付页面 小程序跳转h5页面无法支付
文章链接:http://www.7966.org/post/16410.html
转载请注明出处

喜欢 (0)