vue 支付宝支付

使用浏览器调起支付宝流程:
点击支付宝支付调用后台接口,后台返回一个form表单, 提交form就可以调用支付宝支付了

页面

//  alipayWap: 后台接口返回的form 片段
<div v-html="alipayWap" ref="alipayWap"></div>

JS

methods: {
	toAlipay () {
		this.$get( { url: 'xxx'} ).then (res = > {
				this.alipayWap = res;
				this.$nextTick(() => {
            	this.$refs.alipayWap.children[0].submit()
          	})
		})
	}
}

~~~~~~~~~ 顺利调起支付宝~~~~~~~~

vue 支付宝支付