uni-app集成的有微信app支付,但是有时候为了省事可以做h5的支付
微信的h5支付很简单请求你们后台写的支付接口会返回一个支付链接,前端做的就是跳转到这个链接就可以 App内的话需要webview
this.embed = plus.webview.create(‘支付链接’, 'test', {top:'100%',bottom:'0px',additionalHttpHeaders:{Referer:'微信H5支付的授权域名'}});
this.embed.show();
发布于 2020-11-30 219 次阅读
微信的h5支付很简单请求你们后台写的支付接口会返回一个支付链接,前端做的就是跳转到这个链接就可以 App内的话需要webview
this.embed = plus.webview.create(‘支付链接’, 'test', {top:'100%',bottom:'0px',additionalHttpHeaders:{Referer:'微信H5支付的授权域名'}});
this.embed.show();
Comments | NOTHING