1.调起APP页面如下
步骤
1.让后端对接一下以下文档(手机网站支付通过alipays协议唤起支付宝APP)
https://opendocs.alipay.com/open/203/107091?pathHash=45006f4f&ref=api
2.后端接口会返回一个form提交表单
html:在页面中定义一个div,用于存放表单
<div id="pay"></div>
js:接口请求成功后,表单赋值,然后提交
document.getElementById("pay").innerHTML = url ;
document.forms['punchout_form'].submit();
punchout_form是后端返回表单中的name