码迷,mamicode.com
首页 > 移动开发 > 详细

uniapp实现支付功能

时间:2020-08-26 17:20:21      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:method   account   代码   post   for   url   string   time   环境   

直接贴代码

//支付宝支付
	zfbPay(){
		uni.getProvider({  //获取可用的支付环境
			service: ‘payment‘,
			success: res=>{
				if (~res.provider.indexOf(‘alipay‘)) { //先判断用户是否有支付宝支付环境
					uni.showLoading({title: ‘正在调起支付宝支付‘})
					let params={
						money:this.moneyCount,
						ispc:3
					}
					uni.request({  //再从后端接口获取相关数据,这个接口由后端配置好了,返回结果见下图1-支付宝
						url: `${this.$baseUrl}/api-order/amstc/userRechargeAccountByAliPay`,
						method: ‘POST‘,
						header: {
							"Token":this.userToken,
							"Content-Type":"application/x-www-form-urlencoded"
						},
						data: params,
						success: res => {
							if(res.data.code==200){
								let payInfo=res.data.data  //拿到后端返回数据后调用下面支付函数
								uni.requestPayment({
									provider: ‘alipay‘,
									orderInfo: payInfo, //支付宝订单数据(string类型)
									success: res=>{
										uni.hideLoading();
										uni.showToast({title: ‘支付成功‘,icon:‘none‘})
									},
									fail:err=>{
										uni.hideLoading();
										uni.showToast({title: ‘支付失败,请稍后再试‘,icon:‘none‘})
									}
								});
							}
						},
						fail: () => {
							uni.hideLoading();
							uni.showToast({title: ‘服务器开小差了呢,请您稍后再试‘,icon:‘none‘})
						}
					});
				}else{
					uni.showToast({title: ‘获取支付宝通道失败,请检查您的支付宝是否正常启用‘,icon:‘none‘})
				}
			}
		});
	},
	//微信支付
	wxPay(){
		uni.getProvider({
			service: ‘payment‘,
			success: res=>{
				if (~res.provider.indexOf(‘wxpay‘)) { //先判断用户是否有微信支付环境(是否安装了微信app)
					uni.showLoading({title: ‘正在调起微信支付‘})
						let params={
							money:this.moneyCount,
							bs:4
						}
						uni.request({  //再从后端接口获取相关数据,这个接口由后端配置好了,返回结果见下图2-微信
							url: `${this.$baseUrl}/api-order/amstc/userRechargeAccountByWx`,
							method: ‘POST‘,
							header: {
								"Token":this.userToken,
								"Content-Type":"application/x-www-form-urlencoded"
							},
							data: params,
							success: res => {
								if(res.data.code==200){
									let resobj=JSON.parse(res.data.data)
									let payInfo={
										appid: resobj.appid,
										noncestr: resobj.nonce_str,
										package:"Sign=WXPay",
										partnerid: resobj.mch_id,
										prepayid: resobj.prepay_id,
										timestamp: resobj.time_stamp,
										sign: resobj.sign,
									}
									uni.requestPayment({
										provider: ‘wxpay‘,
										orderInfo: payInfo, //微信订单数据(Object类型)
										success: res=>{
											uni.hideLoading();
										        uni.showToast({title: ‘支付成功‘,icon:‘none‘})
										},
										fail:err=>{
											uni.hideLoading();
										        uni.showToast({title: ‘支付失败,请稍后再试‘,icon:‘none‘})
										}
									});
								}
							},
							fail: () => {
								uni.hideLoading();
								uni.showToast({title: ‘服务器开小差了呢,请您稍后再试‘,icon:‘none‘})
							}
						});
					}else{
						uni.showToast({title: ‘获取微信通道失败,请检查您的微信是否正常启用‘,icon:‘none‘})
					}
				 }
			});
		},

uniapp实现支付功能

标签:method   account   代码   post   for   url   string   time   环境   

原文地址:https://www.cnblogs.com/huihuihero/p/13535158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!