其他分享
首页 > 其他分享> > uni-app h5 支付

uni-app h5 支付

作者:互联网

WeixinJSBridge.invoke('getBrandWCPayRequest', {
    "appId": this.payInfo.appId, //公众号名称,由商户传入
    "timeStamp": this.payInfo.timeStamp, //时间戳
    "nonceStr": this.payInfo.nonceStr, //随机串
    "package": this.payInfo.package, //扩展包
    "signType": "MD5", //微信签名方式:MD5
    "paySign":  this.payInfo.paySign //微信签名
}, function (res) {
    console.log('res', res)
}, function (err) {
    console.log('err', err)
})

 

标签:console,log,err,res,app,h5,timeStamp,uni,payInfo
来源: https://blog.csdn.net/csdn9_14/article/details/98735466