当前位置:网站首页>uni-app解析银行卡(支付宝)返回form表单,唤起支付宝界面

uni-app解析银行卡(支付宝)返回form表单,唤起支付宝界面

2022-06-10 11:55:00 Treasure girl1

在这里插入图片描述

//接口返回form表单形式
that.post({
	url: '接口地址',
		data: data,
		type: 'post',
		success: function(res) {
			console.log(res)
			if (res.code == 1) {
				that.showToast('支付成功')
				 // 将接口返回的form表单显示到页面
				document.querySelector('body').innerHTML = res.data.data;
				// 调用submit方法
				document.forms[0].submit()
			} else {
				that.showToast(res.msg)
			}
		}
})
原网站

版权声明
本文为[Treasure girl1]所创,转载请带上原文链接,感谢
https://blog.csdn.net/Xinacridine/article/details/125185855