小程序里的h5页面调起小程序支付

小程序里的H5页面调起小程序支付

实现思路:在H5页面点击支付回跳到小程序,打开支付页调小程序支付,不支持小程序里的H5页面调用H5的微信支付

1.H5代码


	

2.小程序跳转H5代码

testH5.wxml


  
    
  

3.H5跳转小程序支付代码

Page({
  data: {
  },
  onLoad: function (options) {
    var that = this;
    console.log("回到小程序")
    console.log(options)
   //业务流程
  },

你可能感兴趣的:(微信小程序,web)