注意
测试所用参数都是沙箱环境,仅供测试使用,申请地址:支付宝开发平台 如需付款测试,请使用 账号:uuxesw9745@sandbox.com 密码与支付密码:111111
支付设置
// 支付提供两个接口,
// PC端与手机端,并且在前端使用代码识别
if (/(Android)/i.test(navigator.userAgent)){ // 判断是否为Android手机
url = "/aliPay/toPayAsWeb"
}else if(/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)){ // 判断是否为苹果手机
url = "/aliPay/toPayAsWeb"
} else {
url = "/aliPay/toPayAsPC"
}