赞
踩
uni-app有自带的请求第三方支付的API:uni.requestPayment
uni.requestPayment({
provider: 'alipay',
orderInfo: orderInfo,
success: function(res) {
console.log('success:' + JSON.stringify(res));
},
fail: function(err) {
console.log('fail:' + JSON.stringify(err));
}
});
注:orderInfo最好是让后端拼接好返回,前端直接获取后端的返回数据就可以啦
官网上orderInfo的示例格式如下:
app_id=2015052600090779&biz_content=%7B%22timeout_express%22%3A%2230m%22%2C%22seller_id
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。