微信小程序调用支付功能

微信小程序调用支付功能

2020/07/23

wx.request({
        url: Index.URL+'order/open_member',
        data:{
          openid: that.data.openid,
          wxapp_id: 10001,
          member_time: e.currentTarget.dataset.xud
        },
        success:function(res){
          console.log(res);
          wx.requestPayment({
            timeStamp: res.data.timestamp,//时间戳
            nonceStr: res.data.noncestr,//32位随机数
            package: res.data.package,//统一下单接口返回的 prepay_id 参数值,提交格式如:prepay_id=*
            signType: res.data.signtype,//签名类型,默认为MD5,支持HMAC-SHA256和MD5。注意此处需与统一下单的签名类型一致
            paySign: res.data.paysign,//签名
            success: function (res) { console.log(res) },
            fail: function (err) { console.log(err) }
          })
        },
        fail:function(err){
          console.log(err);
          // errMsg: "requestPayment:fail cancel"用户取消订单
        }
})

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